diff --git a/src/components/visually-hidden/visually-hidden.test.ts b/src/components/visually-hidden/visually-hidden.test.ts index 29a6032d..cc7ee99b 100644 --- a/src/components/visually-hidden/visually-hidden.test.ts +++ b/src/components/visually-hidden/visually-hidden.test.ts @@ -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('', () => { - it('should render a component', async () => { - const el = await fixture(html` `); + it('should render but not display visually hidden content', async () => { + const el = await fixture(html` + + Skip to main content + + `); - 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 = await fixture(html` + + Skip to main content + + `); + + 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%)'); }); });