add visually hidden tests

pull/625/head
Cory LaViska 2021-11-22 15:17:02 -05:00
rodzic 8a766fe100
commit 3897446cb7
1 zmienionych plików z 32 dodań i 6 usunięć

Wyświetl plik

@ -1,13 +1,39 @@
import { expect, fixture, html, waitUntil } from '@open-wc/testing';
// import sinon from 'sinon';
import { expect, fixture, html } from '@open-wc/testing';
import '../../../dist/shoelace.js';
import type SlVisuallyHidden from './visually-hidden';
describe('<sl-visually-hidden>', () => {
it('should render a component', async () => {
const el = await fixture(html` <sl-visually-hidden></sl-visually-hidden> `);
it('should render but not display visually hidden content', async () => {
const el = <SlVisuallyHidden>await fixture(html`
<sl-visually-hidden>
<a href="#">Skip to main content</a>
</sl-visually-hidden>
`);
expect(el).to.exist;
const { width, height, overflow, clipPath } = getComputedStyle(el);
expect(width).to.equal('1px');
expect(height).to.equal('1px');
expect(overflow).to.equal('hidden');
expect(clipPath).to.equal('inset(50%)');
});
// should show visually hidden content when focused
it('should show visually hidden content when focused', async () => {
const el = <SlVisuallyHidden>await fixture(html`
<sl-visually-hidden>
<a href="#">Skip to main content</a>
</sl-visually-hidden>
`);
const a = el.querySelector('a');
a.focus();
const { width, height, overflow, clipPath } = getComputedStyle(el);
expect(width).not.to.equal('1px');
expect(height).not.to.equal('1px');
expect(overflow).not.to.equal('hidden');
expect(clipPath).not.to.equal('inset(50%)');
});
});