We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58254b3 commit f7e8ae4Copy full SHA for f7e8ae4
1 file changed
frontend/src/plugins/impl/plotly/__tests__/selection.test.ts
@@ -134,20 +134,6 @@ describe("shouldHandleClickSelection", () => {
134
expect(shouldHandleClickSelection([linePoint])).toBe(true);
135
});
136
137
- it("accepts box plot clicks", () => {
138
- const boxPoint = createPlotDatum({
139
- data: { type: "box" },
140
- });
141
-
142
- expect(shouldHandleClickSelection([boxPoint])).toBe(true);
143
144
145
- it("accepts violin plot clicks", () => {
146
- const violinPoint = createPlotDatum({
147
- data: { type: "violin" },
148
149
150
- expect(shouldHandleClickSelection([violinPoint])).toBe(true);
151
it("accepts funnel clicks", () => {
152
const funnelPoint = createPlotDatum({
153
data: { type: "funnel" },
0 commit comments