Skip to content

Commit 093f521

Browse files
authored
fix: remove circular dependency checks (#553)
1 parent dec2e0d commit 093f521

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/specs/mounting-options/stubs.spec.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -299,9 +299,9 @@ describeWithMountingMethods('options.stub', (mountingMethod) => {
299299
expect(HTML).contains('No render function')
300300
})
301301

302-
const invalidValues = ['child-component', 'ChildComponent', 'childComponent']
303-
invalidValues.forEach(invalidValue => {
304-
it('throws an error when passed a circular reference', () => {
302+
it.skip('throws an error when passed a circular reference', () => {
303+
const invalidValues = ['child-component', 'ChildComponent', 'childComponent']
304+
invalidValues.forEach(invalidValue => {
305305
const error = '[vue-test-utils]: options.stub cannot contain a circular reference'
306306
const fn = () => mountingMethod(ComponentWithChild, {
307307
stubs: {

0 commit comments

Comments
 (0)