From 70775e121a2a109eb7212173dadd16062675bbde Mon Sep 17 00:00:00 2001 From: Clark Du Date: Mon, 21 Jan 2019 09:26:59 +0000 Subject: [PATCH] fix(test): typescirpt modern mode only check once --- test/unit/typescript.modern.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/typescript.modern.test.js b/test/unit/typescript.modern.test.js index c313e43c20..33968c6ea1 100644 --- a/test/unit/typescript.modern.test.js +++ b/test/unit/typescript.modern.test.js @@ -8,7 +8,7 @@ describe('typescript modern', () => { beforeAll(async () => { const options = await loadFixture('typescript') - nuxt = new Nuxt(Object.assign(options, { modern: true })) + nuxt = new Nuxt(Object.assign(options, { modern: true, build: { useForkTsChecker: true } })) await new Builder(nuxt, BundleBuilder).build() })