Skip to content

Commit f7e8ae4

Browse files
committed
fix(plotly): remove duplicate box/violin test cases in selection.test.ts
1 parent 58254b3 commit f7e8ae4

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

frontend/src/plugins/impl/plotly/__tests__/selection.test.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -134,20 +134,6 @@ describe("shouldHandleClickSelection", () => {
134134
expect(shouldHandleClickSelection([linePoint])).toBe(true);
135135
});
136136

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);
151137
it("accepts funnel clicks", () => {
152138
const funnelPoint = createPlotDatum({
153139
data: { type: "funnel" },

0 commit comments

Comments
 (0)