Skip to content

Commit

Permalink
chore: second e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerio Como committed Mar 26, 2024
1 parent 3e3d1b0 commit 1c55d70
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
import { newE2EPage } from '@stencil/core/testing';

describe('kup-input-panel', () => {
it('it runs', () => {
expect(true).toBeTruthy();
});

//TODO: riparti da qui
it('renders', async () => {
const page = await newE2EPage();

await page.setContent('<kup-input-panel></kup-input-panel>');
const element = await page.find('kup-input-panel');
expect(element).toHaveClass('hydrated');
});
});

0 comments on commit 1c55d70

Please sign in to comment.