-
Bartek Wrona authored
Added explicit definition of Playwright project specific to WAX test suite, to avoid messing with test suite comming from beekeeper_wasm directory
Bartek Wrona authoredAdded explicit definition of Playwright project specific to WAX test suite, to avoid messing with test suite comming from beekeeper_wasm directory
playwright.config.ts 502 B
// This is a workaround for https://github.com/microsoft/playwright/issues/18282#issuecomment-1612266345
import { defineConfig } from '@playwright/test';
export default defineConfig({
reporter: [
['junit', { outputFile: 'results.xml' }],
['json', { outputFile: 'results.json' }]
],
projects: [
{
name: "wax_testsuite",
testDir: "./wasm/__tests__/"
}
],
// Run your local dev server before starting the tests
webServer: {
command: 'npx http-server'
}
});