12 lines
346 B
TypeScript
12 lines
346 B
TypeScript
![]() |
import { FullConfig } from '@playwright/test'
|
||
|
import { setupDatabase, teardownDatabase } from './services/database'
|
||
|
|
||
|
async function globalSetup(config: FullConfig) {
|
||
|
const { baseURL } = config.projects[0].use
|
||
|
if (!baseURL) throw new Error('baseURL is missing')
|
||
|
await teardownDatabase()
|
||
|
await setupDatabase()
|
||
|
}
|
||
|
|
||
|
export default globalSetup
|