From 859fd93143e44e54c7753dc0fd4cedcd3c30bc5b Mon Sep 17 00:00:00 2001 From: eddyerburgh Date: Mon, 23 Apr 2018 17:53:59 +0100 Subject: [PATCH] fix: remove circular dependency checks --- test/specs/mounting-options/stubs.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/specs/mounting-options/stubs.spec.js b/test/specs/mounting-options/stubs.spec.js index 7173f4c52..87c8ba9fd 100644 --- a/test/specs/mounting-options/stubs.spec.js +++ b/test/specs/mounting-options/stubs.spec.js @@ -299,9 +299,9 @@ describeWithMountingMethods('options.stub', (mountingMethod) => { expect(HTML).contains('No render function') }) - const invalidValues = ['child-component', 'ChildComponent', 'childComponent'] - invalidValues.forEach(invalidValue => { - it('throws an error when passed a circular reference', () => { + it.skip('throws an error when passed a circular reference', () => { + const invalidValues = ['child-component', 'ChildComponent', 'childComponent'] + invalidValues.forEach(invalidValue => { const error = '[vue-test-utils]: options.stub cannot contain a circular reference' const fn = () => mountingMethod(ComponentWithChild, { stubs: {