mirror of
https://github.com/jlengrand/undercover.git
synced 2026-03-10 08:51:23 +00:00
18 lines
539 B
JavaScript
18 lines
539 B
JavaScript
// import { html, fixture, expect } from '@open-wc/testing';
|
|
|
|
// import '../src/under-cover';
|
|
|
|
// describe('<under-cover>', () => {
|
|
// it('has a default property header', async () => {
|
|
// const el = await fixture('<under-cover></under-cover>');
|
|
// expect(el.title).to.equal('open-wc');
|
|
// });
|
|
|
|
// it('allows property header to be overwritten', async () => {
|
|
// const el = await fixture(html`
|
|
// <under-cover title="different"></under-cover>
|
|
// `);
|
|
// expect(el.title).to.equal('different');
|
|
// });
|
|
// });
|