mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
9883eae2e7
* cypress * all * global setup * global setup * setup node * setup node * setup node
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
|