mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
20 lines
729 B
JavaScript
20 lines
729 B
JavaScript
import { importModule } from '../../src/imports'
|
|
|
|
describe('imports', () => {
|
|
test('should import relative module', async () => {
|
|
await expect(importModule('jest')).resolves.toBeDefined()
|
|
})
|
|
test('should import core module', async () => {
|
|
await expect(importModule('path')).resolves.toBeDefined()
|
|
})
|
|
test('should throw error with proper code when module not found', async () => {
|
|
await expect(importModule('not-found-module')).rejects.toMatchObject({
|
|
message: 'Cannot import module \'not-found-module\'',
|
|
code: 'MODULE_NOT_FOUND'
|
|
})
|
|
})
|
|
test('should throw error when error is not module not found', async () => {
|
|
await expect(importModule('jest/README.md')).rejects.toThrow()
|
|
})
|
|
})
|