Files
undercover/test/under-cover.test.js
2019-06-25 09:44:15 +02:00

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');
// });
// });