From f950c5f22b6732a7f94994858a31c8fc61933f88 Mon Sep 17 00:00:00 2001
From: 38elements <mh19820223@gmail.com>
Date: Wed, 16 May 2018 18:17:20 +0900
Subject: [PATCH] test: fix propsData.spec.js

---
 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