W3cubDocs

/webpack 2

mocha-loader

Install

npm install --save-dev mocha-loader

Usage

webpack.config.js

module.exports = {
  entry: './entry.js',
  output: {
    path: __dirname,
    filename: 'bundle.js'
  }
}
import test from './test'

CLI

webpack --module-bind 'mocha-loader!./test'
import test from './test'

Require

import test from 'mocha-loader!./test'

Options

© 2012–2016 Tobias Koppers
Licensed under the Creative Commons Attribution License 4.0.
https://webpack.js.org/loaders/mocha-loader/