0.1.0 • Published 6 years ago

tdd-webpack-plugin v0.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

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
      - test

It 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-plugin

In 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

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.