Skip to content

Commit

Permalink
move Api tests after frontend tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mariscalromeroalejandro committed Jan 31, 2025
1 parent 0fd8993 commit fca8c02
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions QualityControl/test/test-index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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');
});

Expand Down

0 comments on commit fca8c02

Please sign in to comment.