mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
9 lines
207 B
TypeScript
9 lines
207 B
TypeScript
import { FullConfig } from '@playwright/test';
|
|
|
|
async function globalSetup(config: FullConfig) {
|
|
process.env.EMAIL = 'bibi@bloxberg.de';
|
|
process.env.PASSWORD = 'Aa12345_';
|
|
}
|
|
|
|
export default globalSetup;
|