JSPM

tdd-webpack-plugin

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q17305F
  • License ISC

run minimal set of unit tests on build under webpack watch

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

keytypedefaultdescription
basestring'/'project root directory
testFolderstring'test'test folder
matchSpecsstring'*.spec.js'string to match specs
baseUrlstring'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.