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
06c100f4
Unverified
Commit
06c100f4
authored
3 years ago
by
Anton Kulyk
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Repro #18589 (#18730)
parent
638063dc
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/test/metabase/scenarios/question/reproductions/18589-numeric-binning-in-joins.cy.spec.js
+44
-0
44 additions, 0 deletions
...n/reproductions/18589-numeric-binning-in-joins.cy.spec.js
with
44 additions
and
0 deletions
frontend/test/metabase/scenarios/question/reproductions/18589-numeric-binning-in-joins.cy.spec.js
0 → 100644
+
44
−
0
View file @
06c100f4
import
{
restore
,
openOrdersTable
,
getNotebookStep
,
popover
,
}
from
"
__support__/e2e/cypress
"
;
describe
(
"
issue 18589
"
,
()
=>
{
beforeEach
(()
=>
{
restore
();
cy
.
signInAsAdmin
();
cy
.
intercept
(
"
POST
"
,
"
/api/dataset
"
).
as
(
"
dataset
"
);
});
it
.
skip
(
"
should not bin numeric fields in join condition by default (metabase#18589)
"
,
()
=>
{
openOrdersTable
({
mode
:
"
notebook
"
});
joinTable
(
"
Reviews
"
);
selectFromDropdown
(
"
Quantity
"
);
selectFromDropdown
(
"
Rating
"
);
cy
.
findByText
(
"
Summarize
"
).
click
();
selectFromDropdown
(
"
Count of rows
"
);
getNotebookStep
(
"
summarize
"
).
within
(()
=>
{
cy
.
icon
(
"
play
"
).
click
();
cy
.
wait
(
"
@dataset
"
);
cy
.
findByText
(
"
2.860.368
"
);
});
});
});
function
joinTable
(
table
)
{
cy
.
findByText
(
"
Join data
"
).
click
();
popover
()
.
findByText
(
table
)
.
click
();
}
function
selectFromDropdown
(
option
,
clickOpts
)
{
popover
()
.
findByText
(
option
)
.
click
(
clickOpts
);
}
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