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
Admin message
A compter du 1er avril, attention à vos pipelines :
Nouvelles limitations de Docker Hub
Show more breadcrumbs
Cassiopée
nghyd
Commits
c35640a8
Commit
c35640a8
authored
1 year ago
by
François Grand
Browse files
Options
Downloads
Patches
Plain Diff
fix(e2e): parallel structure submergence warning is also displayed along with submergence error
refs
#614
parent
80e36eb0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
e2e/calculator.po.ts
+11
-0
11 additions, 0 deletions
e2e/calculator.po.ts
e2e/parallel-structures.e2e-spec.ts
+6
-5
6 additions, 5 deletions
e2e/parallel-structures.e2e-spec.ts
with
17 additions
and
5 deletions
e2e/calculator.po.ts
+
11
−
0
View file @
c35640a8
...
...
@@ -335,6 +335,17 @@ export class CalculatorPage {
return
style
.
indexOf
(
"
color: red;
"
)
!==
-
1
;
}
/**
* return true if the nth log entry is a warning
*/
async
nthLogEntryIsWarning
(
n
:
number
)
{
const
errs
=
element
.
all
(
by
.
css
(
"
log-entry
"
));
const
e
=
errs
.
get
(
n
);
const
icon
=
e
.
element
(
by
.
css
(
"
div mat-icon
"
));
const
style
=
await
icon
.
getAttribute
(
"
style
"
);
return
style
.
indexOf
(
"
color: orange;
"
)
!==
-
1
;
}
async
clickSaveCalcButton
()
{
await
scrollPageToTop
();
return
await
element
(
by
.
css
(
"
#save-calc
"
)).
click
();
...
...
This diff is collapsed.
Click to expand it.
e2e/parallel-structures.e2e-spec.ts
+
6
−
5
View file @
c35640a8
...
...
@@ -61,7 +61,6 @@ describe("Parallel structures - ", () => {
});
it
(
"
check submergence error
"
,
async
()
=>
{
debugger
await
startPage
.
navigateTo
();
await
loadSession
(
navBar
,
sideNav
,
"
./session/session-erreur-ennoiement-614.json
"
);
...
...
@@ -77,9 +76,10 @@ describe("Parallel structures - ", () => {
await
browser
.
sleep
(
500
);
// check error message in log
expect
(
await
calcPage
.
nbLogEntries
()).
toBe
(
1
);
expect
(
await
calcPage
.
nbLogEntries
()).
toBe
(
2
);
expect
(
await
calcPage
.
nthLogEntryIsError
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIsWarning
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIsError
(
1
)).
toBe
(
true
);
// second calculator
...
...
@@ -91,8 +91,9 @@ describe("Parallel structures - ", () => {
await
browser
.
sleep
(
500
);
// check error message in log
expect
(
await
calcPage
.
nbLogEntries
()).
toBe
(
1
);
expect
(
await
calcPage
.
nbLogEntries
()).
toBe
(
2
);
expect
(
await
calcPage
.
nthLogEntryIsError
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIsWarning
(
0
)).
toBe
(
true
);
expect
(
await
calcPage
.
nthLogEntryIsError
(
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