+ ██╗
+ ██████╗ ███████╗ █████═████╗ ██████╗ ██████╗██║ ██╗
+██╔═══██╗██╔═════╝██╔══██╔══██╗██╔═══██╗██╔════╝██║ ██╔╝
+████████║╚██████╗ ██║ ██║ ██║██║ ██║██║ ██████╔╝
+██╔═════╝ ╚════██╗██║ ██║ ██║██║ ██║██║ ██╔══██╗
+╚███████╗███████╔╝██║ ██║ ██║╚██████╔╝╚██████╗██║ ╚██╗
+ ╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝
esmock provides native ESM import mocking for unit tests. Use examples below as a quick-start guide or use the descriptive and friendly esmock guide here.
esmock
is used with node's --loader
{
"name": "give-esmock-a-star",
"type": "module",
"scripts": {
"test": "node --loader=esmock --test",
"test-mocha": "mocha --loader=esmock",
"test-tap": "NODE_OPTIONS=--loader=esmock tap",
"test-ava": "NODE_OPTIONS=--loader=esmock ava",
"test-uvu": "NODE_OPTIONS=--loader=esmock uvu spec",
"test-tsm": "node --loader=tsm --loader=esmock --test *ts",
"test-ts-node": "node --loader=ts-node/esm --loader=esmock --test *ts"
}
}
esmock
has the below signature
await esmock(
'./to/module.js',
{ ...childmocks },
{ ...globalmocks })
esmock
examples
import test from 'node:test'
import assert from 'node:assert/strict'
import esmock from 'esmock'
test('should mock local files and packages', async () => {
const main = await esmock('../src/main.js', {
stringifierpackage: JSON.stringify,
'../src/hello.js': {
default: () => 'world',
exportedFunction: () => 'foo'
}
})
assert.strictEqual(main(), JSON.stringify({ test: 'world foo' }))
})
test('should do global instance mocks —third param', async () => {
const { getFile } = await esmock('../src/main.js', {}, {
fs: {
readFileSync: () => 'returns this globally'
}
})
assert.strictEqual(getFile(), 'returns this globally')
})
test('should mock "await import()" using esmock.p', async () => {
const doAwaitImport = await esmock.p('../awaitImportLint.js', {
eslint: { ESLint: cfg => cfg }
})
assert.strictEqual(await doAwaitImport('cfg'), 'cfg')
})
test('should suppport partial mocks', async () => {
const pathWrap = await esmock('../src/pathWrap.js', {
path: { dirname: () => '/path/to/file' }
})
await assert.rejects(async () => pathWrap.basename('/dog.png'), {
name: 'TypeError',
message: 'path.basename is not a function'
})
const pathWrapPartial = await esmock.px('../src/pathWrap.js', {
path: { dirname: () => '/home/' }
})
assert.deepEqual(pathWrapPartial.basename('/dog.png'), 'dog.png')
assert.deepEqual(pathWrapPartial.dirname(), '/home/')
})