Skip to content

Latest commit

 

History

History
108 lines (88 loc) · 2.39 KB

README.md

File metadata and controls

108 lines (88 loc) · 2.39 KB

npm deps chat

Mocha Loader

Allows Mocha tests to be loaded and run via webpack

Install

npm install --save-dev mocha-loader

Usage

Configuration (recommended)

webpack.config.js

module.exports = {
  entry: './entry.js',
  output: {
    path: __dirname,
    filename: 'bundle.js'
  },
  modules: {
    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