2017-11-27 17:00:23 +00:00
|
|
|
import { resolve } from 'path'
|
2018-04-13 07:24:30 +00:00
|
|
|
import consola from 'consola'
|
|
|
|
|
2018-03-27 22:28:17 +00:00
|
|
|
import { Nuxt, Options, version } from '../utils'
|
2017-11-30 10:24:06 +00:00
|
|
|
|
2018-03-18 19:31:32 +00:00
|
|
|
describe('basic config defaults', () => {
|
|
|
|
test('Nuxt.version is same as package', () => {
|
|
|
|
expect(Nuxt.version).toBe(version)
|
|
|
|
})
|
2017-11-27 17:00:23 +00:00
|
|
|
|
2018-08-10 07:41:23 +00:00
|
|
|
test('modulesDir uses /node_modules as default if not set', () => {
|
2018-03-18 19:31:32 +00:00
|
|
|
const options = Options.from({})
|
2018-03-19 10:06:45 +00:00
|
|
|
const currentNodeModulesDir = resolve(__dirname, '..', '..', 'node_modules')
|
2018-03-18 19:31:32 +00:00
|
|
|
expect(options.modulesDir.includes(currentNodeModulesDir)).toBe(true)
|
|
|
|
})
|
2018-04-13 07:24:30 +00:00
|
|
|
|
2018-08-10 07:41:23 +00:00
|
|
|
test('vendor has been deprecated', () => {
|
2018-04-13 07:24:30 +00:00
|
|
|
const options = Options.from({
|
|
|
|
build: { vendor: 'vue' }
|
|
|
|
})
|
|
|
|
expect(options.build.vendor).toBeUndefined()
|
|
|
|
expect(consola.warn).toHaveBeenCalledWith('vendor has been deprecated due to webpack4 optimization')
|
|
|
|
})
|
2017-11-27 17:00:23 +00:00
|
|
|
})
|