UNPKG

@finastra/textarea

Version:

Textarea Web Component

10 lines 390 B
import { html, fixture, expect, elementUpdated } from '@open-wc/testing'; import '../src/textarea.js'; describe('Textarea', () => { it('loads accessibly', async () => { const el = await fixture(html `<fds-textarea label="test"></fds-textarea>`); await elementUpdated(el); await expect(el).to.be.accessible(); }); }); //# sourceMappingURL=textarea.test.js.map