Package Exports
- tdd-webpack-plugin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (tdd-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
tdd-webpack-plugin
Introduction
This plugin assume your project is built on the following structure.
- yourProjectRoot/
- src/
- index.js
- modules/
- someModule/
- test/
- components/
- index.js
- testIt will help you, once changed src/modules/someModule/index.js, runs all the tests under the same parent tree, i.e. src/modules/someModule/test
Installation
$ npm install --save-dev tdd-webpack-pluginIn webpack config file, extend the TestDrivenDevPlugin class, provide a test function.
The test function is call when webpack emit assets (https://webpack.js.org/api/compiler-hooks/#emit).
The following is the implementation of tdd webpack plugin integrated with cypress (https://www.cypress.io/)
webpack.dev.conf.js
const tdd = require('tdd-webpack-plugin')
const cypress = require('cypress')
class CypressTDDPlugin extends tdd.TestDrivenDevPlugin {
test(specs) {
// specs is an iterator
// options accessible through this.options
let specString = [...specs].join(',')
if (!specString) {
specString = `**/${this.options.matchSpecs}`
}
cypress.run({
reporter: 'min',
config: {
baseUrl: this.options.baseUrl,
chromeWebSecurity: false,
video: false,
modifyObstructiveCode: false
},
spec: specString
})
}
}Under plugins options, add the instance
plugins: [
........
new CypressTDDPlugin({
base: resolve('./src'),
baseUrl: 'http://localhost:8080',
testFolder: 'test',
matchSpecs: '*.spec.js'
})
]Configuration
| key | type | default | description |
|---|---|---|---|
| base | string | '/' | project root directory |
| testFolder | string | 'test' | test folder |
| matchSpecs | string | '*.spec.js' | string to match specs |
| baseUrl | string | 'http://localhost:8080' | dev server url |
Under the Hood
The plugin hooks webpack's emit event (https://webpack.js.org/api/compiler-hooks/#emit), and tracks the changes of the files currently watched by webpack. For each changed source file, it will then traverse upward and find the first test folder, and run all the specs under that folder.