Skip to content

Commit d3e257d

Browse files
committed
Update tests
1 parent d65b61a commit d3e257d

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

cypress/fixtures/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function testCommonFeatures({
2727
cy.get('.atom-data-table').should('exist').and('be.visible')
2828

2929
cy.log('close table')
30-
cy.get('[data-cy="data-table-close"]').should('exist').and('be.visible').click();
30+
cy.get('[data-cy="data-table-close"]').should('exist').and('be.visible').click({ force: true });
3131
cy.get('.atom-data-table').should('not.be.visible')
3232
}
3333

src/components/vue-ui-circle-pack.cy.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import vueUiCirclePack from "./vue-ui-circle-pack.vue";
21
import { components } from "../../cypress/fixtures/vdui-components";
32
import { testCommonFeatures } from "../../cypress/fixtures";
43
import VueUiCirclePack from "./vue-ui-circle-pack.vue";

src/components/vue-ui-quick-chart.cy.js

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe('VueUiQuickChart', () => {
8383
'id',
8484
'name',
8585
'value',
86-
'values'
86+
'values',
8787
)
8888
});
8989

@@ -97,7 +97,8 @@ describe('VueUiQuickChart', () => {
9797
'coordinates',
9898
'id',
9999
'name',
100-
'values'
100+
'values',
101+
'shape'
101102
);
102103
});
103104
});
@@ -183,7 +184,7 @@ describe('VueUiQuickChart', () => {
183184
'id',
184185
'name',
185186
'value',
186-
'values'
187+
'values',
187188
)
188189
});
189190

@@ -198,7 +199,8 @@ describe('VueUiQuickChart', () => {
198199
'id',
199200
'linePath',
200201
'name',
201-
'values'
202+
'values',
203+
'shape'
202204
);
203205
});
204206
});
@@ -298,7 +300,7 @@ describe('VueUiQuickChart', () => {
298300
'id',
299301
'name',
300302
'value',
301-
'values'
303+
'values',
302304
)
303305
});
304306

@@ -314,7 +316,8 @@ describe('VueUiQuickChart', () => {
314316
'coordinates',
315317
'id',
316318
'name',
317-
'values'
319+
'values',
320+
'shape'
318321
);
319322
});
320323
});
@@ -416,7 +419,7 @@ describe('VueUiQuickChart', () => {
416419
'id',
417420
'name',
418421
'value',
419-
'values'
422+
'values',
420423
)
421424
});
422425

@@ -433,7 +436,8 @@ describe('VueUiQuickChart', () => {
433436
'id',
434437
'linePath',
435438
'name',
436-
'values'
439+
'values',
440+
'shape'
437441
);
438442
});
439443
});
@@ -538,7 +542,7 @@ describe('VueUiQuickChart', () => {
538542
'separator',
539543
'startX',
540544
'startY',
541-
'value'
545+
'value',
542546
)
543547
});
544548

@@ -554,7 +558,8 @@ describe('VueUiQuickChart', () => {
554558
'immutableValue',
555559
'name',
556560
'proportion',
557-
'value'
561+
'value',
562+
'shape'
558563
);
559564
});
560565
});

0 commit comments

Comments
 (0)