Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Engineering Digital Service
Metabase
Commits
15bc3349
Unverified
Commit
15bc3349
authored
11 months ago
by
Uladzimir Havenchyk
Committed by
GitHub
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix flaky object-detail e2e test (#41096)
parent
697ac34d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
e2e/test/scenarios/visualizations-tabular/object_detail.cy.spec.js
+8
-2
8 additions, 2 deletions
...scenarios/visualizations-tabular/object_detail.cy.spec.js
with
8 additions
and
2 deletions
e2e/test/scenarios/visualizations-tabular/object_detail.cy.spec.js
+
8
−
2
View file @
15bc3349
...
...
@@ -163,8 +163,14 @@ describe("scenarios > question > object details", { tags: "@slow" }, () => {
createQuestion
(
questionDetails
,
{
visitQuestion
:
true
});
cy
.
get
(
"
.cellData
"
).
contains
(
"
4966277046676
"
).
realHover
();
cy
.
findByTestId
(
"
detail-shortcut
"
).
findByRole
(
"
button
"
).
click
();
// there should be a hover instead of click
// but realHover is flaky
cy
.
get
(
"
.cellData
"
).
contains
(
"
4966277046676
"
).
click
();
cy
.
findByTestId
(
"
detail-shortcut
"
)
.
findByRole
(
"
button
"
)
.
should
(
"
be.visible
"
)
.
click
();
cy
.
findByRole
(
"
dialog
"
).
findByTestId
(
"
fk-relation-orders
"
).
click
();
...
...
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