mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-12 19:40:03 -05:00
15 lines
500 B
TypeScript
15 lines
500 B
TypeScript
import { ServiceAuth, ServiceOS, createAzurePlaywrightConfig } 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,
|
|
})
|
|
);
|