aboutsummaryrefslogtreecommitdiff
path: root/test/unit/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/index.js')
-rw-r--r--test/unit/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/index.js b/test/unit/index.js
index 83a2dcdb..24d2825c 100644
--- a/test/unit/index.js
+++ b/test/unit/index.js
@@ -1,3 +1,10 @@
+import { configureCompat } from 'vue'
+// disable compat for certain features
+configureCompat({
+ COMPONENT_V_MODEL: false,
+ INSTANCE_SET: false,
+ RENDER_FUNCTION: false
+})
// require all test files (files that ends with .spec.js)
const testsContext = require.context('./specs', true, /\.spec$/)
testsContext.keys().forEach(testsContext)