it('renders playsinline attribute', () => {
    const wrapper = render(<MediaTag playsInline={true} />);

    expect(wrapper).toHaveDescendant('video[playsinline]');
  });