Skip to content

Commit ec8c6ab

Browse files
committed
test: fix container data tests
1 parent 4676b1a commit ec8c6ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/container.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ describe("[ EllipseProgressContainer.vue ]", () => {
175175
const globalProps = wrapper.props();
176176
for (const circleProps of circlesData) {
177177
for (const prop of Object.keys(circleProps)) {
178-
// this must be overwritten
179-
if (prop === "progress" || prop === "color" || prop === "loading") {
178+
// this must be overwritten, omitted or are circle specific
179+
if (["progress", "color", "loading", "data", "multiple"].includes(prop)) {
180180
continue;
181181
}
182182
expect(circleProps[prop]).to.equal(globalProps[prop]);

0 commit comments

Comments
 (0)