import { normalize } from 'path' import rp from 'request-promise-native' import { Nuxt } from '..' import { loadFixture, getPort } from './utils' let port const url = route => 'http://localhost:' + port + route let nuxt = null // let buildSpies = null beforeAll(async () => { const config = loadFixture('module') nuxt = new Nuxt(config) port = await getPort() await nuxt.listen(port, 'localhost') }) test('Plugin', async () => { expect(normalize(nuxt.options.plugins[0].src).includes( normalize('fixtures/module/.nuxt/basic.reverse.') )).toBe(true) const { html } = await nuxt.renderRoute('/') expect(html.includes('

TXUN

')).toBe(true) }) test('Layout', async () => { expect(nuxt.options.layouts.layout.includes('layout')).toBe(true) const { html } = await nuxt.renderRoute('/layout') expect(html.includes('

Module Layouts

')).toBe(true) }) test('Hooks', async () => { expect(nuxt.__module_hook).toBe(1) expect(nuxt.__renderer_hook).toBe(2) }) test('Hooks - Functional', async () => { expect(nuxt.__ready_called__).toBe(true) }) // test('Hooks - Error', async () => { // expect(buildSpies.error.calledWithMatch(/build:extendRoutes/)).toBe(true) // }) test('Middleware', async () => { let response = await rp(url('/api')) expect(response).toBe('It works!') }) test('Hooks - Use external middleware before render', async () => { let response = await rp(url('/use-middleware')) expect(response).toBe('Use external middleware') }) // Close server and ask nuxt to stop listening to file changes test('Closing server and nuxt.js', async () => { await nuxt.close() })