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
380a2f96
Unverified
Commit
380a2f96
authored
2 years ago
by
Nemanja Glumac
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Repro #27427: Static-viz fails for unused returned column (#27441)
parent
ad3adb75
No related branches found
Branches containing commit
Tags
v0.30.4
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/test/metabase/scenarios/visualizations/reproductions/27427-static-viz-divide-by-zero.cy.spec.js
+45
-0
45 additions, 0 deletions
.../reproductions/27427-static-viz-divide-by-zero.cy.spec.js
with
45 additions
and
0 deletions
frontend/test/metabase/scenarios/visualizations/reproductions/27427-static-viz-divide-by-zero.cy.spec.js
0 → 100644
+
45
−
0
View file @
380a2f96
import
{
restore
}
from
"
__support__/e2e/helpers
"
;
const
questionDetails
=
{
name
:
"
27427
"
,
native
:
{
query
:
"
select 1 as sortorder, year(current_timestamp), 1 v1, 2 v2
\n
union all select 1, year(current_timestamp)-1, 1, 2
"
,
"
template-tags
"
:
{},
},
display
:
"
bar
"
,
visualization_settings
:
{
"
graph.dimensions
"
:
[
"
EXTRACT(YEAR FROM CURRENT_TIMESTAMP)
"
],
"
graph.metrics
"
:
[
"
V1
"
,
"
V2
"
],
"
graph.series_order_dimension
"
:
null
,
"
graph.series_order
"
:
null
,
},
};
describe
.
skip
(
"
issue 27427
"
,
()
=>
{
beforeEach
(()
=>
{
restore
();
cy
.
signInAsAdmin
();
});
it
(
"
static-viz should not fail if there is unused returned column: 'divide by zero' (metabase#27427)
"
,
()
=>
{
assertStaticVizRender
(
questionDetails
,
({
status
,
body
})
=>
{
expect
(
status
).
to
.
eq
(
200
);
expect
(
body
).
to
.
not
.
include
(
"
An error occurred while displaying this card.
"
,
);
});
});
});
function
assertStaticVizRender
(
questionDetails
,
callback
)
{
cy
.
createNativeQuestion
(
questionDetails
).
then
(({
body
:
{
id
}
})
=>
{
cy
.
request
({
method
:
"
GET
"
,
url
:
`/api/pulse/preview_card/
${
id
}
`
,
failOnStatusCode
:
false
,
}).
then
(
response
=>
{
callback
(
response
);
});
});
}
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