From a43fc32bf35c5bce7a4ce031cbc69cbe97d196c2 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sun, 22 Dec 2024 13:30:57 +0100 Subject: [PATCH] Move the integration tests boot file to the integration tests folder This file is specific to the integration tests, so this commit moves it to bundle the integration test logic a bit better and to match the unit/font tests in terms of folder structure for consistency. --- test/{integration-boot.mjs => integration/jasmine-boot.js} | 2 ++ test/test.mjs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) rename test/{integration-boot.mjs => integration/jasmine-boot.js} (98%) diff --git a/test/integration-boot.mjs b/test/integration/jasmine-boot.js similarity index 98% rename from test/integration-boot.mjs rename to test/integration/jasmine-boot.js index 4e04bb6f1..3dff4d9f0 100644 --- a/test/integration-boot.mjs +++ b/test/integration/jasmine-boot.js @@ -13,6 +13,8 @@ * limitations under the License. */ +/* eslint-disable no-console */ + import Jasmine from "jasmine"; async function runTests(results) { diff --git a/test/test.mjs b/test/test.mjs index 4d16c8ea1..3f031b066 100644 --- a/test/test.mjs +++ b/test/test.mjs @@ -806,7 +806,7 @@ async function startIntegrationTest() { onAllSessionsClosed = onAllSessionsClosedAfterTests("integration"); startServer(); - const { runTests } = await import("./integration-boot.mjs"); + const { runTests } = await import("./integration/jasmine-boot.js"); await startBrowsers({ baseUrl: null, initializeSession: session => {