From 6c452d7e46fa9c8f163479e2f7e388598b2bdca4 Mon Sep 17 00:00:00 2001 From: Alexander Komarov Date: Fri, 22 Jun 2018 12:15:41 +0300 Subject: [PATCH] Disable Vue production tip in tests --- tests/__setup__.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/__setup__.js b/tests/__setup__.js index 03fc3ec..8b7af43 100644 --- a/tests/__setup__.js +++ b/tests/__setup__.js @@ -1,5 +1,8 @@ import './polyfills/raf' +import Vue from 'vue' global.normalizeHTMLString = function normalizeHTMLString (string) { return string.replace(/\n\s*/g, '') } + +Vue.config.productionTip = false