mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
8 lines
251 B
JavaScript
8 lines
251 B
JavaScript
import { playwrightLauncher } from '@web/test-runner-playwright';
|
|
import defaultConfig from './web-test-runner.config.mjs';
|
|
|
|
const config = { ...defaultConfig };
|
|
config.browsers = [playwrightLauncher({ product: 'chromium' })];
|
|
|
|
export default config;
|