Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nghyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Cassiopée
nghyd
Commits
a95ebb1a
Commit
a95ebb1a
authored
1 year ago
by
François Grand
Browse files
Options
Downloads
Patches
Plain Diff
fix(e2e): submergence error/warning order in submergence test
refs
#614
parent
d33cb071
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!225
Release v4.17.0
,
!216
Resolve "Structure: Ajouter une erreur sur l'ennoiement"
Pipeline
#140383
passed
1 year ago
Stage: install
Stage: build
Stage: clean-stale-branches
Stage: deploy-dev
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
e2e/parallel-structures.e2e-spec.ts
+4
-4
4 additions, 4 deletions
e2e/parallel-structures.e2e-spec.ts
with
4 additions
and
4 deletions
e2e/parallel-structures.e2e-spec.ts
+
4
−
4
View file @
a95ebb1a
...
...
@@ -87,8 +87,8 @@ describe("Parallel structures - ", () => {
// check error message in log
expect
(
await
calcPage
.
nbLogEntries
()).
toBe
(
2
);
expect
(
await
calcPage
.
nthLogEntryIs
Warning
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIs
Error
(
1
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIs
Error
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIs
Warning
(
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
.
nthLogEntryIs
Warning
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIs
Error
(
1
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIs
Error
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIs
Warning
(
1
)).
toBe
(
true
);
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment