From 401930450c9235fb9c8116688a1d8a0931bc8514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Chopin?= Date: Wed, 7 Dec 2016 18:59:38 +0100 Subject: [PATCH] remove console.log --- examples/with-ava/test/index.test.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/with-ava/test/index.test.js b/examples/with-ava/test/index.test.js index 8b8013a569..75272b589d 100755 --- a/examples/with-ava/test/index.test.js +++ b/examples/with-ava/test/index.test.js @@ -18,8 +18,7 @@ test.before('Init Nuxt.js', (t) => { } nuxt = new Nuxt(options) return nuxt.build() - .then(function (lol) { - console.log(lol) + .then(function () { server = createServer((req, res) => nuxt.render(req, res)) server.listen(4000, 'localhost') })