From 2858f247e958a2d2f255e210910ba41ec07d4d84 Mon Sep 17 00:00:00 2001 From: Lachlan Date: Sat, 23 May 2020 00:37:54 +1000 Subject: [PATCH] fix: fix iife build (#1555) --- packages/shared/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shared/util.js b/packages/shared/util.js index 9f209b8b3..c2655d499 100644 --- a/packages/shared/util.js +++ b/packages/shared/util.js @@ -2,7 +2,7 @@ import Vue from 'vue' import semver from 'semver' import { VUE_VERSION } from './consts' -import { config } from '@vue/test-utils' +import { config } from '../test-utils/src' export function throwError(msg: string): void { throw new Error(`[vue-test-utils]: ${msg}`)