Skip to content
Snippets Groups Projects
Commit a95ebb1a authored by François Grand's avatar François Grand
Browse files

fix(e2e): submergence error/warning order in submergence test

refs #614
parent d33cb071
No related branches found
No related tags found
2 merge requests!225Release v4.17.0,!216Resolve "Structure: Ajouter une erreur sur l'ennoiement"
Pipeline #140383 passed
......@@ -87,8 +87,8 @@ describe("Parallel structures - ", () => {
// check error message in log
expect(await calcPage.nbLogEntries()).toBe(2);
expect(await calcPage.nthLogEntryIsWarning(0)).toBe(true);
expect(await calcPage.nthLogEntryIsError(1)).toBe(true);
expect(await calcPage.nthLogEntryIsError(0)).toBe(true);
expect(await calcPage.nthLogEntryIsWarning(1)).toBe(true);
// second calculator
......@@ -103,7 +103,7 @@ describe("Parallel structures - ", () => {
// check error message in log
expect(await calcPage.nbLogEntries()).toBe(2);
expect(await calcPage.nthLogEntryIsWarning(0)).toBe(true);
expect(await calcPage.nthLogEntryIsError(1)).toBe(true);
expect(await calcPage.nthLogEntryIsError(0)).toBe(true);
expect(await calcPage.nthLogEntryIsWarning(1)).toBe(true);
});
});
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