fix(core): update

This commit is contained in:
Philipp Kunz 2022-03-18 19:46:30 +01:00
parent 3a2ba14287
commit fa2ab7730a

View File

@ -6,7 +6,7 @@ tap.test('should create a working button', async () => {
const button: deesCatalog.DeesButton = await webhelpers.fixture(
webhelpers.html`<dees-button></dees-button>`
);
expect(button).to.be.instanceOf(deesCatalog.DeesButton);
expect(button).toBeInstanceOf(deesCatalog.DeesButton);
});
tap.start();