diff options
author | Winnie Hellmann <winnie@gitlab.com> | 2019-03-28 14:17:52 +0100 |
---|---|---|
committer | Winnie Hellmann <winnie@gitlab.com> | 2019-03-28 14:17:52 +0100 |
commit | 9d4061efdf7357109b6ad5f7372a8f69d0ca25a4 (patch) | |
tree | 059aad698ec34eda1b791e9377d1c11107da3692 | |
parent | a85fd76f524802a02957ccdcca7674f618a9e069 (diff) | |
download | gitlab-ce-9d4061efdf7357109b6ad5f7372a8f69d0ca25a4.tar.gz |
Disable Vue tips when running Jestwinh-jest-vue-tips
-rw-r--r-- | spec/frontend/test_setup.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/spec/frontend/test_setup.js b/spec/frontend/test_setup.js index 006fc60ef57..f5b91d0e1c3 100644 --- a/spec/frontend/test_setup.js +++ b/spec/frontend/test_setup.js @@ -22,4 +22,7 @@ beforeEach(done => { done(); }); +Vue.config.devtools = false; +Vue.config.productionTip = false; + Vue.use(Translate); |