mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import { loadFixture, getPort, Nuxt, rp } from '../utils'
|
|
|
|
let port
|
|
const url = route => 'http://localhost:' + port + route
|
|
|
|
let nuxt = null
|
|
|
|
describe('dist options', () => {
|
|
beforeAll(async () => {
|
|
const options = await loadFixture('basic')
|
|
nuxt = new Nuxt(Object.assign(options, { dev: false }))
|
|
port = await getPort()
|
|
await nuxt.server.listen(port, '0.0.0.0')
|
|
})
|
|
|
|
test('Specify maxAge/index in render.dist options', async () => {
|
|
const { body } = await rp(url('/'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
try {
|
|
await rp(url('/_nuxt/'), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
} catch (err) {
|
|
expect(err.toString().includes('StatusCodeError'))
|
|
}
|
|
const distFile = body.match(/\/_nuxt\/.+?\.js/)[0]
|
|
const { headers } = await rp(url(distFile), {
|
|
resolveWithFullResponse: true
|
|
})
|
|
const twoYears = (((60 * 60 * 24 * 365) * 2) / 1000).toString()
|
|
expect(headers['cache-control']).toContain(twoYears)
|
|
})
|
|
|
|
// Close server and ask nuxt to stop listening to file changes
|
|
afterAll(async () => {
|
|
await nuxt.close()
|
|
})
|
|
})
|