woocommerce/plugins/woocommerce-blocks/tests/e2e/playwright.performance.conf...

23 lines
374 B
TypeScript

/**
* External dependencies
*/
import { defineConfig, PlaywrightTestConfig } from '@playwright/test';
/**
* Internal dependencies
*/
import baseConfig from './playwright.config';
const config: PlaywrightTestConfig = {
...baseConfig,
projects: [
{
name: 'chromium',
testDir: '.',
testMatch: '*.perf.ts',
},
],
};
export default defineConfig( config );