From 528d637519a5a6409a25b20657bd51a819905ffb Mon Sep 17 00:00:00 2001 From: 38elements <38elements@users.noreply.github.com> Date: Wed, 16 May 2018 21:08:36 +0900 Subject: [PATCH] test: fix propsData.spec.js (#617) --- test/specs/mounting-options/propsData.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/specs/mounting-options/propsData.spec.js b/test/specs/mounting-options/propsData.spec.js index 6774b2cb1..42ba93047 100644 --- a/test/specs/mounting-options/propsData.spec.js +++ b/test/specs/mounting-options/propsData.spec.js @@ -1,12 +1,12 @@ import { shallowMount } from '~vue/test-utils' import ComponentWithProps from '~resources/components/component-with-props.vue' -import { describeIf } from '~resources/utils' +import { describeRunIf } from 'conditional-specs' const baseData = { prop1: ['', ''] } -describeIf(process.env.TEST_ENV !== 'node', +describeRunIf(process.env.TEST_ENV !== 'node', 'propsData', () => { let wrapper