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
22d46412
Unverified
Commit
22d46412
authored
3 years ago
by
Nemanja Glumac
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add repro for #15714 (#15722)
parent
e01bebc1
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-db/postgres/custom-column.cy.spec.js
+20
-0
20 additions, 0 deletions
frontend/test/metabase-db/postgres/custom-column.cy.spec.js
with
20 additions
and
0 deletions
frontend/test/metabase-db/postgres/custom-column.cy.spec.js
+
20
−
0
View file @
22d46412
...
...
@@ -75,4 +75,24 @@ describe("postgres > question > custom columns", () => {
cy
.
contains
(
ESCAPED_REGEX
);
});
});
it
.
skip
(
"
`Percentile` custom expression function should accept two parameters (metabase#15714)
"
,
()
=>
{
cy
.
visit
(
"
/question/new
"
);
cy
.
findByText
(
"
Custom question
"
).
click
();
cy
.
findByText
(
PG_DB_NAME
).
click
();
cy
.
findByText
(
"
Orders
"
).
click
();
cy
.
icon
(
"
add_data
"
).
click
();
cy
.
get
(
"
[contenteditable='true']
"
)
.
click
()
.
type
(
"
Percentile([Subtotal], 0.1)
"
);
cy
.
findByPlaceholderText
(
"
Something nice and descriptive
"
)
.
as
(
"
description
"
)
.
click
();
cy
.
findByText
(
"
Function Percentile expects 1 argument
"
).
should
(
"
not.exist
"
);
cy
.
get
(
"
@description
"
).
type
(
"
A
"
);
cy
.
findByRole
(
"
button
"
,
{
name
:
"
Done
"
})
.
should
(
"
not.be.disabled
"
)
.
click
();
// Todo: Add positive assertions once this is fixed
});
});
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