1
1
mirror of https://github.com/c8r/x0.git synced 2024-10-05 17:47:32 +03:00

Increase timeout for build test

This commit is contained in:
Brent Jackson 2018-06-23 13:06:12 -04:00
parent 531facc2a1
commit 8c7f3d48ec
2 changed files with 2 additions and 2 deletions

View File

@ -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"
},

View File

@ -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)