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') })