From 7b202962e877dca16f2129cacb0215c624d2ff21 Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Mon, 14 Nov 2022 15:55:49 +0100 Subject: [PATCH] testing --- .dev.env | 2 ++ docker-compose.dev.yaml | 2 +- playwright.config.ts | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .dev.env diff --git a/.dev.env b/.dev.env new file mode 100644 index 0000000..0ab8828 --- /dev/null +++ b/.dev.env @@ -0,0 +1,2 @@ +SIZE_LIMIT=10MiB +VERBOSITY=debug diff --git a/docker-compose.dev.yaml b/docker-compose.dev.yaml index ae65fc8..32da180 100644 --- a/docker-compose.dev.yaml +++ b/docker-compose.dev.yaml @@ -11,7 +11,7 @@ services: app: build: . - env_file: .env + env_file: .dev.env depends_on: - redis ports: diff --git a/playwright.config.ts b/playwright.config.ts index bb78140..fc7888f 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -10,7 +10,7 @@ const config: PlaywrightTestConfig = { outputDir: './test-results', testDir: './test', timeout: 60_000, - // testIgnore: ['file/too-big.spec.ts'], + testIgnore: ['file/too-big.spec.ts'], webServer: { command: 'docker compose -f docker-compose.dev.yaml up',