diff --git a/package.json b/package.json index 12414a5..b98a2b3 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "scripts": { "start": "./cli.js docs -p 8888", "build": "./cli.js build docs", - "test": "nyc ava -T 30s", + "test": "nyc ava --timeout=60s", "test:components": "nyc ava test/components.js", "cover": "nyc report --reporter=html --reporter=lcov" }, diff --git a/test/build.js b/test/build.js index 5df8e4b..7bdbb49 100644 --- a/test/build.js +++ b/test/build.js @@ -25,7 +25,7 @@ const clean = () => { test.before(clean) test.after(clean) -test.skip('static renders', async t => { +test('static renders', async t => { const res = await build(options) const html = fs.readFileSync(htmlFile, 'utf8') t.snapshot(html)