import { loadFixture, getPort, Nuxt, rp } from '../utils' let port const url = route => 'http://localhost:' + port + route let nuxt = null describe('with-config', () => { beforeAll(async () => { const config = loadFixture('with-config') nuxt = new Nuxt(config) port = await getPort() await nuxt.listen(port, 'localhost') }) test('/', async () => { const { html } = await nuxt.renderRoute('/') expect(html.includes('
Made by Nuxt.js team
')).toBe(true) }) test('/ (custom build.publicPath)', async () => { const { html } = await nuxt.renderRoute('/') expect(html.includes('