From 5f4679188751e452b5841a4b040e6cd809724797 Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sun, 13 Apr 2025 14:56:34 +0200 Subject: [PATCH] Run the integration tests in a random order This commit configures Jasmine to no longer run the tests in a fixed order, which combined with the previous isolation commits avoids being able to accidentally introduce dependencies between integration tests. --- test/integration/jasmine-boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/jasmine-boot.js b/test/integration/jasmine-boot.js index 5c74aa958..f4bc84a87 100644 --- a/test/integration/jasmine-boot.js +++ b/test/integration/jasmine-boot.js @@ -23,7 +23,7 @@ async function runTests(results) { jasmine.jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000; jasmine.loadConfig({ - random: false, + random: true, spec_dir: "integration", spec_files: [ "accessibility_spec.mjs",