From 3a70ea587e0e63467e77eda1e1f68857d7a466e3 Mon Sep 17 00:00:00 2001 From: Jonas Galvez Date: Sat, 1 Sep 2018 21:30:39 -0300 Subject: [PATCH] lint --- test/unit/https.test.js | 3 +-- test/unit/sockets.test.js | 4 +--- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/test/unit/https.test.js b/test/unit/https.test.js index fb13eabd639b..1168a920d363 100644 --- a/test/unit/https.test.js +++ b/test/unit/https.test.js @@ -1,5 +1,4 @@ -import consola from 'consola' -import { loadFixture, getPort, Nuxt, rp } from '../utils' +import { loadFixture, getPort, Nuxt } from '../utils' let nuxt = null diff --git a/test/unit/sockets.test.js b/test/unit/sockets.test.js index 3f830e5cc899..a48b9ade659c 100644 --- a/test/unit/sockets.test.js +++ b/test/unit/sockets.test.js @@ -1,5 +1,4 @@ -import consola from 'consola' -import { loadFixture, getPort, Nuxt, rp } from '../utils' +import { loadFixture, getPort, Nuxt } from '../utils' let nuxt = null @@ -7,7 +6,6 @@ describe('basic sockets', () => { beforeAll(async () => { const options = await loadFixture('sockets') nuxt = new Nuxt(options) - const port = await getPort() await nuxt.listen() })