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
ae6e9d9f
Unverified
Commit
ae6e9d9f
authored
3 years ago
by
Nemanja Glumac
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
#12128 Repro: Can't change label on empty row value (#16426)
parent
2a67d448
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
frontend/test/metabase/scenarios/visualizations/line_chart.cy.spec.js
+42
-0
42 additions, 0 deletions
...t/metabase/scenarios/visualizations/line_chart.cy.spec.js
with
42 additions
and
0 deletions
frontend/test/metabase/scenarios/visualizations/line_chart.cy.spec.js
+
42
−
0
View file @
ae6e9d9f
...
...
@@ -105,6 +105,48 @@ describe("scenarios > visualizations > line chart", () => {
});
});
it
.
skip
(
"
should be possible to update/change label for an empty row value (metabase#12128)
"
,
()
=>
{
visitQuestionAdhoc
({
dataset_query
:
{
type
:
"
native
"
,
native
:
{
query
:
"
SELECT '2020-03-01'::date as date, 'cat1' as category, 23 as value
\n
UNION ALL
\n
SELECT '2020-03-01'::date, '', 44
\n
UNION ALL
\n
SELECT '2020-03-01'::date, 'cat3', 58
\n\n
UNION ALL
\n\n
SELECT '2020-03-02'::date as date, 'cat1' as category, 20 as value
\n
UNION ALL
\n
SELECT '2020-03-02'::date, '', 50
\n
UNION ALL
\n
SELECT '2020-03-02'::date, 'cat3', 58
"
,
"
template-tags
"
:
{},
},
database
:
1
,
},
display
:
"
line
"
,
visualization_settings
:
{
"
graph.dimensions
"
:
[
"
DATE
"
,
"
CATEGORY
"
],
"
graph.metrics
"
:
[
"
VALUE
"
],
},
});
cy
.
findByText
(
"
Settings
"
).
click
();
cy
.
findByTestId
(
"
sidebar-left
"
).
within
(()
=>
{
// Make sure we can update input with some existing value
cy
.
findByDisplayValue
(
"
cat1
"
)
.
type
(
"
new
"
)
.
blur
();
cy
.
findByDisplayValue
(
"
cat1 new
"
);
// Now do the same for the input with no value
cy
.
findByDisplayValue
(
""
)
.
type
(
"
cat2
"
)
.
blur
();
cy
.
findByDisplayValue
(
"
cat2
"
);
cy
.
button
(
"
Done
"
).
click
();
});
cy
.
get
(
"
.LegendItem
"
)
.
should
(
"
contain
"
,
"
cat1 new
"
)
.
and
(
"
contain
"
,
"
cat2
"
)
.
and
(
"
contain
"
,
"
cat3
"
);
});
describe
.
skip
(
"
tooltip of combined dashboard cards (multi-series) should show the correct column title (metabase#16249
"
,
()
=>
{
const
RENAMED_FIRST_SERIES
=
"
Foo
"
;
const
RENAMED_SECOND_SERIES
=
"
Bar
"
;
...
...
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