From fca8c02f85b28709dcecfa4b9bf372ffed2dd393 Mon Sep 17 00:00:00 2001 From: Alejandro Mariscal Romero <87366244+mariscalromeroalejandro@users.noreply.github.com> Date: Fri, 31 Jan 2025 16:56:50 +0100 Subject: [PATCH] move Api tests after frontend tests --- QualityControl/test/test-index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/QualityControl/test/test-index.js b/QualityControl/test/test-index.js index f7ab40707..3dcca1286 100644 --- a/QualityControl/test/test-index.js +++ b/QualityControl/test/test-index.js @@ -99,11 +99,6 @@ suite('All Tests - QCG', { timeout: FRONT_END_TIMEOUT + BACK_END_TIMEOUT }, asyn await terminateSessionAndLog(browser, subprocessOutput, subprocess); }); - suite('API - Test Suite', async () => { - suite('Layout PUT request test suite', async () => apiPutLayoutTests()); - suite('Layout PATCH request test suite', async () => apiPatchLayoutTests()); - }); - test( 'should successfully import and run the tests for page setup', async (testParent) => await initialPageSetupTests(url, page, FRONT_END_PER_TEST_TIMEOUT, testParent), @@ -143,6 +138,11 @@ suite('All Tests - QCG', { timeout: FRONT_END_TIMEOUT + BACK_END_TIMEOUT }, asyn async (testParent) => await layoutShowTests(url, page, FRONT_END_PER_TEST_TIMEOUT, testParent), ); + suite('API - Test Suite', async () => { + suite('Layout PUT request test suite', async () => apiPutLayoutTests()); + suite('Layout PATCH request test suite', async () => apiPatchLayoutTests()); + }); + // require('./about-page.test'); });