mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-16 19:07:16 -06:00
15 lines
499 B
TypeScript
15 lines
499 B
TypeScript
import { createAzurePlaywrightConfig, ServiceAuth, ServiceOS } from '@azure/playwright';
|
|
import { defineConfig } from '@playwright/test';
|
|
import config from './playwright.config';
|
|
|
|
/* Learn more about service configuration at https://aka.ms/pww/docs/config */
|
|
export default defineConfig(
|
|
config,
|
|
createAzurePlaywrightConfig(config, {
|
|
exposeNetwork: '<loopback>',
|
|
connectTimeout: 3 * 60 * 1000, // 3 minutes
|
|
os: ServiceOS.LINUX,
|
|
serviceAuthType: ServiceAuth.ACCESS_TOKEN
|
|
})
|
|
);
|