From 3de7921b5a53e288d24c500b71507756853cc4c4 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Wed, 31 May 2017 17:24:36 +0430 Subject: [PATCH] test: fix appveyor --- test/module.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/module.test.js b/test/module.test.js index d03cce264f..31b5bc7cac 100755 --- a/test/module.test.js +++ b/test/module.test.js @@ -26,7 +26,7 @@ test('Vendor', async t => { }) test('Plugin', async t => { - t.true(nuxt.options.plugins[0].src.includes('fixtures/module/.nuxt/basic.reverse.'), 'plugin added to config') + t.true(nuxt.options.plugins[0].src.includes('~/.nuxt/basic.reverse.'), 'plugin added to config') const { html } = await nuxt.renderRoute('/') t.true(html.includes('

TXUN

'), 'plugin works') })