From ab5b64ea67f8838721d1948b602e686aef5a8054 Mon Sep 17 00:00:00 2001 From: Pooya Parsa Date: Sun, 30 Jul 2017 16:52:39 +0430 Subject: [PATCH] enable async components tests (vue 2.4) --- test/ssr.test.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/test/ssr.test.js b/test/ssr.test.js index c3be1a519f..e45201fb04 100755 --- a/test/ssr.test.js +++ b/test/ssr.test.js @@ -62,10 +62,9 @@ test('unique responses with component', async t => { await uniqueTest(t, '/component') }) -test.todo('unique responses with async components (wait Vue 2.4)') -// test('unique responses with async components', async t => { -// await uniqueTest(t, '/asyncComponent') -// }) +test('unique responses with async components', async t => { + await uniqueTest(t, '/asyncComponent') +}) test('unique responses with asyncData()', async t => { await uniqueTest(t, '/asyncData')