import './pagination.element.js'; import { assert, fixture, html } from '@open-wc/testing'; import type { USAPaginationElement } from './pagination.element.js'; describe('usa-pagination', () => { it('should be accessible', async () => { const pagination = await fixture(html` Hello World `); return assert.isAccessible(pagination); }); });