import { esbuildPlugin } from '@web/dev-server-esbuild'; import { playwrightLauncher } from '@web/test-runner-playwright'; export default { nodeResolve: true, files: 'src/**/*.test.ts', plugins: [esbuildPlugin({ ts: true, target: 'auto' })], browsers: [ playwrightLauncher({ product: 'chromium' }), playwrightLauncher({ product: 'firefox' }), playwrightLauncher({ product: 'webkit' }), ], coverageConfig: { reporters: ['lcovonly', 'text-summary'], }, testRunnerHtml: (testFramework) => `
`, };