Skip to content
Snippets Groups Projects
Unverified Commit 84d731cf authored by metabase-bot[bot]'s avatar metabase-bot[bot] Committed by GitHub
Browse files

Fix e2e util `cypressWaitAll` (#40572) (#40611)


* Fix e2e utils

* Update e2e/support/commands/api/composite/createDashboardWithQuestions.js



* Remove unnecessary return



---------

Co-authored-by: default avatarMahatthana (Kelvin) Nomsawadi <me@bboykelvin.dev>
Co-authored-by: default avatarKamil Mielnik <kamil@kamilmielnik.com>
parent df197c07
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,10 @@ Cypress.Commands.add(
questions.map(query =>
cy.createQuestionAndAddToDashboard(query, dashboard.id),
),
).then(questions => {
).then(dashcardResponses => {
const questions = dashcardResponses.map(
dashcardResponse => dashcardResponse.body.card,
);
return {
questions,
dashboard,
......
......@@ -26,7 +26,7 @@ Cypress.Commands.add(
})
.then(response => ({
...response,
body: response.body.dashcards[0],
body: response.body.dashcards.at(-1),
})),
),
),
......
......@@ -101,28 +101,29 @@ export function interceptPromise(method, path) {
* cy.visit(`/dashboard/1`);
* });
*/
const cypressWaitAllRecursive = (results, currentCommand, commands) => {
return currentCommand.then(result => {
results.push(result);
const cypressWaitAllRecursive = (results, commands) => {
const [nextCommand, ...restCommands] = commands;
if (!nextCommand) {
return;
}
const [nextCommand, ...rest] = Array.from(commands);
return nextCommand.then(result => {
results.push(result);
if (nextCommand == null) {
return results;
return;
}
return cypressWaitAllRecursive(results, nextCommand, rest);
return cypressWaitAllRecursive(results, restCommands);
});
};
export const cypressWaitAll = function (commands) {
const results = [];
return cypressWaitAllRecursive(
results,
cy.wrap(null, { log: false }),
commands,
);
return cy.wrap(results).then(() => {
cypressWaitAllRecursive(results, commands);
});
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment