fix: esm test case

This commit is contained in:
DarkSky
2023-01-09 12:20:53 +08:00
parent c7409bef84
commit 1cb83e4bdb
20 changed files with 40 additions and 34 deletions

View File

@@ -1,11 +1,17 @@
import { test, expect } from '@playwright/test';
import { loadPage } from './libs/load-page';
import pkg from './../packages/app/package.json';
import { loadPage } from './libs/load-page.js';
loadPage();
test.describe('web console', () => {
test('editor version', async ({ page }) => {
// TODO: playwright need to support json import in esm
test.skip('editor version', async ({ page }) => {
// TODO: playwright need to support json import in esm
// const pkg = await import('./../packages/app/package.json', {
// assert: { type: 'json' },
// });
const pkg = {} as any;
// https://playwright.dev/docs/evaluating
// https://github.com/microsoft/playwright/issues/13059
// Get the handle to a specific function.