create-backan
Version:
Quickly create a backan application to get started
18 lines (16 loc) • 373 B
JavaScript
/**
* Playwright config.
*
* @description Playwright config.
* @see https://playwright.dev/docs/api/class-testconfig
*/
import { defineConfig } from '@playwright/test'
import { port } from './vite.config.mjs'
export default defineConfig( {
webServer : {
command : 'vite dev',
port,
},
testDir : 'tests',
testMatch : /(.+\.)?(test|spec)\.[jt]s/,
} )