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