Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
cf8e75c9
Commit
cf8e75c9
authored
11 months ago
by
Damien IRIBERRY
Browse files
Options
Downloads
Patches
Plain Diff
[ivette] - Fix e2e tests
parent
aafffd03
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ivette/tests/libs/e2eService.ts
+1
-1
1 addition, 1 deletion
ivette/tests/libs/e2eService.ts
ivette/tests/libs/locatorsUtil.ts
+4
-2
4 additions, 2 deletions
ivette/tests/libs/locatorsUtil.ts
with
5 additions
and
3 deletions
ivette/tests/libs/e2eService.ts
+
1
−
1
View file @
cf8e75c9
...
@@ -43,7 +43,7 @@ export async function launchIvette(
...
@@ -43,7 +43,7 @@ export async function launchIvette(
...
process
.
env
,
...
process
.
env
,
NODE_ENV
:
"
development
"
,
NODE_ENV
:
"
development
"
,
},
},
args
:
p
ar
am
s
,
args
:
ar
g
s
,
});
});
// Get the first window that the app opens, wait if necessary
// Get the first window that the app opens, wait if necessary
...
...
This diff is collapsed.
Click to expand it.
ivette/tests/libs/locatorsUtil.ts
+
4
−
2
View file @
cf8e75c9
...
@@ -26,8 +26,10 @@ import { Locator, Page } from "@playwright/test";
...
@@ -26,8 +26,10 @@ import { Locator, Page } from "@playwright/test";
* Locator to select "Console" in the right menu
* Locator to select "Console" in the right menu
*/
*/
export
function
getConsoleView
(
window
:
Page
):
Locator
{
export
function
getConsoleView
(
window
:
Page
):
Locator
{
return
window
window
.
getByText
(
"
Console
"
).
first
();
.
getByText
(
"
Other Plugins
"
)
.
click
();
return
window
.
getByText
(
"
Console
"
).
first
();
}
}
/**
/**
...
...
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