hydra-element
Version:
A custom element for wrapping the hydra-synth engine
19 lines (18 loc) • 465 B
JavaScript
import { playwrightLauncher } from '@web/test-runner-playwright';
import { vitePlugin } from '@remcovaes/web-test-runner-vite-plugin'
export default {
files: 'src/**/*.spec.js',
plugins: [vitePlugin()],
browsers: [
playwrightLauncher({
product: 'chromium',
launchOptions: {
executablePath: '/usr/bin/chromium-browser',
args: [
'--no-sandbox',
'--disable-setuid-sandbox',
],
},
}),
],
};