11 lines
318 B
TypeScript
11 lines
318 B
TypeScript
// playwright.config.ts
|
|
import type { PlaywrightTestConfig } from '@playwright/test'
|
|
const config: PlaywrightTestConfig = {
|
|
globalSetup: './global-setup',
|
|
use: {
|
|
// Tell all tests to load signed-in state from 'storageState.json'.
|
|
storageState: 'storageState.json'
|
|
}
|
|
}
|
|
export default config
|