23 lines
605 B
TypeScript
23 lines
605 B
TypeScript
import { html } from 'lit';
|
|
import { fixture, expect } from '@open-wc/testing';
|
|
|
|
import type { AppCfpodcasts } from '../src/index.js';
|
|
import '../src/index.js';
|
|
|
|
describe('AppCfpodcasts', () => {
|
|
let element: AppCfpodcasts;
|
|
beforeEach(async () => {
|
|
element = await fixture(html`<app-cfpodcasts></app-cfpodcasts>`);
|
|
});
|
|
|
|
it('renders a h1', () => {
|
|
const h1 = element.shadowRoot!.querySelector('h1')!;
|
|
expect(h1).to.exist;
|
|
expect(h1.textContent).to.equal('My app');
|
|
});
|
|
|
|
it('passes the a11y audit', async () => {
|
|
await expect(element).shadowDom.to.be.accessible();
|
|
});
|
|
});
|