1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-19 17:47:56 +03:00
x0/test/static.js
2017-10-19 14:17:56 -06:00

78 lines
1.6 KiB
JavaScript

import fs from 'fs'
import path from 'path'
import test from 'ava'
import x0Static from '../lib/static'
const hello = path.join(__dirname, './components/Hello.js')
const withprops = path.join(__dirname, './components/Props.js')
const output = path.join(__dirname, './output')
const htmlFile = path.join(__dirname, './output/index.html')
const bundleFile = path.join(__dirname, './output/bundle.js')
const clean = () => {
if (fs.existsSync(htmlFile)) {
fs.unlinkSync(htmlFile)
}
if (fs.existsSync(bundleFile)) {
fs.unlinkSync(bundleFile)
}
}
test.before(clean)
test.after(clean)
test.cb('static renders', t => {
x0Static(hello, {}, (err, result) => {
t.is(err, null)
t.is(typeof result, 'object')
t.snapshot(result.html)
t.end()
})
})
test.cb('static writes', t => {
x0Static(hello, {
outDir: 'test/output'
}, (err, result) => {
t.is(err, null)
t.is(typeof result, 'object')
t.snapshot(result.html)
t.end()
})
})
test.cb('static uses getInitialProps method', t => {
x0Static(withprops, {}, (err, result) => {
t.is(err, null)
t.is(typeof result, 'object')
t.snapshot(result.html)
t.end()
})
})
test.cb('static picks up routes config', t => {
x0Static(hello, {
routes: [
'/'
]
}, (err, result) => {
t.is(err, null)
t.is(typeof result, 'object')
t.snapshot(result.html)
t.end()
})
})
test.cb('static makes a directory', t => {
if (fs.existsSync(output)) {
fs.rmdirSync(output)
}
x0Static(hello, {
outDir: 'test/output'
}, (err, result) => {
t.is(err, null)
t.end()
})
})