From 225167a8bbd92d10a73988966a322bbd1229b9d6 Mon Sep 17 00:00:00 2001 From: Igor Lobanov Date: Wed, 5 Feb 2025 11:35:42 +0100 Subject: [PATCH] cleanup --- client/tests/e2e/globalSetup.ts | 1 - client/tests/e2e/globalTeardown.ts | 4 ---- 2 files changed, 5 deletions(-) diff --git a/client/tests/e2e/globalSetup.ts b/client/tests/e2e/globalSetup.ts index 4f5564ec..6f130b6e 100644 --- a/client/tests/e2e/globalSetup.ts +++ b/client/tests/e2e/globalSetup.ts @@ -1,6 +1,5 @@ import { chromium, FullConfig } from '@playwright/test'; import { existsSync, renameSync } from 'fs'; -import { join } from 'path'; import { ADMIN_USERNAME, ADMIN_PASSWORD, PORT } from '../constants'; diff --git a/client/tests/e2e/globalTeardown.ts b/client/tests/e2e/globalTeardown.ts index 38f994e5..8b68c9bb 100644 --- a/client/tests/e2e/globalTeardown.ts +++ b/client/tests/e2e/globalTeardown.ts @@ -1,7 +1,3 @@ -import { chromium, FullConfig } from '@playwright/test'; - -import { ADMIN_USERNAME, ADMIN_PASSWORD, PORT } from '../constants'; - import { existsSync, renameSync, unlinkSync } from 'fs'; import { CONFIG_FILE, TEMP_CONFIG_FILE } from './globalSetup';