chore(playwright): enable type checking (#25034)

This commit is contained in:
Sean Perkins
2022-03-31 15:42:09 -04:00
committed by GitHub
parent 0aa6d124d6
commit 2af24494f5
63 changed files with 163 additions and 173 deletions

View File

@ -111,7 +111,6 @@ test('datetime:rtl: basic', async () => {
expect(compare).toMatchScreenshot();
});
describe('datetime: confirm date', () => {
test('should set the date value based on the selected date', async () => {

View File

@ -1,4 +1,4 @@
import { newE2EPage, E2EPage } from '@stencil/core/testing';
import { E2EPage, newE2EPage } from '@stencil/core/testing';
test('presentation', async () => {
const page = await newE2EPage({

View File

@ -34,4 +34,3 @@ describe('datetime: setting the value', () => {
expect(activeTime).toEqualText('12:40 PM');
})
})