Skip to content

Commit 01e14e6

Browse files
committed
Removed useless test
1 parent 98d59f1 commit 01e14e6

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

cypress/fixtures/radar.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
]
7676
},
7777
"config": {
78-
"useCssAnimation": true,
78+
"useCssAnimation": false,
7979
"style": {
8080
"fontFamily": "inherit",
8181
"chart": {

src/components/vue-ui-radar.cy.js

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,6 @@ describe('<VueUiRadar />', () => {
77
cy.viewport(500, 500);
88
});
99

10-
it('segregates series when selecting legend items', () => {
11-
cy.get('@fixture').then((fixture) => {
12-
cy.mount(VueUiRadar, {
13-
props: {
14-
dataset: fixture.dataset,
15-
config: fixture.config
16-
},
17-
});
18-
19-
cy.get('[data-cy-legend-item]').eq(0).click()
20-
cy.get('[data-cy-radar-path]').should('have.length', 2)
21-
cy.get('[data-cy-legend-item]').eq(0).click()
22-
cy.get('[data-cy-radar-path]').should('have.length', 3)
23-
});
24-
})
25-
2610
it('renders', () => {
2711
cy.get('@fixture').then((fixture) => {
2812
cy.mount(VueUiRadar, {

0 commit comments

Comments
 (0)