mocha-loader

Allows Mocha tests to be loaded and run via webpack

Install

npm install --save-dev mocha-loader

Usage

##

webpack.config.js


module.exports = {
  entry: './entry.js',
  output: {
    path: __dirname,
    filename: 'bundle.js'
  },
  module: {
    rules: [{
      test: /test\.js$/,
      use: 'mocha-loader',
      exclude: /node_modules/,
    }]
  }
}
import test from './test'

CLI

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

Require

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

Options

Maintainer


Juho Vepsäläinen


Joshua Wiens


Kees Kluskens


Sean Larkin