mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
41 lines
1.3 KiB
JavaScript
41 lines
1.3 KiB
JavaScript
import { resolve } from 'path'
|
|
import consola from 'consola'
|
|
|
|
import { Nuxt, getNuxtConfig, version } from '../utils'
|
|
|
|
describe('basic config defaults', () => {
|
|
test('Nuxt.version is same as package', () => {
|
|
expect(Nuxt.version).toBe(version)
|
|
})
|
|
|
|
test('modulesDir uses /node_modules as default if not set', () => {
|
|
const options = getNuxtConfig({})
|
|
const currentNodeModulesDir = resolve(__dirname, '..', '..', 'node_modules')
|
|
expect(options.modulesDir.includes(currentNodeModulesDir)).toBe(true)
|
|
})
|
|
|
|
test('vendor has been deprecated', () => {
|
|
const options = getNuxtConfig({
|
|
build: { vendor: 'vue' }
|
|
})
|
|
expect(options.build.vendor).toBeUndefined()
|
|
expect(consola.warn).toHaveBeenCalledWith('vendor has been deprecated due to webpack4 optimization')
|
|
})
|
|
|
|
test('globalName uses nuxt as default if not set', () => {
|
|
const options = getNuxtConfig({})
|
|
expect(options.globalName).toEqual('nuxt')
|
|
})
|
|
|
|
test('globalName uses nuxt as default if set to something other than only letters', () => {
|
|
let options = getNuxtConfig({ globalName: '12foo4' })
|
|
expect(options.globalName).toEqual('nuxt')
|
|
|
|
options = getNuxtConfig({ globalName: 'foo bar' })
|
|
expect(options.globalName).toEqual('nuxt')
|
|
|
|
options = getNuxtConfig({ globalName: 'foo?' })
|
|
expect(options.globalName).toEqual('nuxt')
|
|
})
|
|
})
|