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
d91878c0
Unverified
Commit
d91878c0
authored
3 years ago
by
Nemanja Glumac
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Repro #20469: Main page loading spinner spins forever on API error (#20675)
parent
f214d903
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/test/metabase/scenarios/onboarding/home/homepage.cy.spec.js
+12
-0
12 additions, 0 deletions
...st/metabase/scenarios/onboarding/home/homepage.cy.spec.js
with
12 additions
and
0 deletions
frontend/test/metabase/scenarios/onboarding/home/homepage.cy.spec.js
+
12
−
0
View file @
d91878c0
...
...
@@ -10,6 +10,18 @@ describe("scenarios > home > homepage", () => {
cy
.
signInAsAdmin
();
});
it
.
skip
(
"
should handle server errors on load (metabase#20469)
"
,
()
=>
{
cy
.
intercept
(
"
GET
"
,
"
/api/database
"
,
req
=>
{
req
.
reply
({
statusCode
:
500
,
});
});
cy
.
visit
(
"
/
"
);
// Even if we don't receive a list of our databases, we should still be able to load all items in the root collection
cy
.
findByText
(
"
Browse all items
"
);
});
it
(
"
should allow basic navigation
"
,
()
=>
{
cy
.
visit
(
"
/
"
);
cy
.
findByText
(
"
Add my data
"
).
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