kensho / multi-cypress

Parallel cypress tests.
48 stars 6 forks source link

Allow custom plugins in the build file #8

Open bahmutov opened 8 years ago

bahmutov commented 8 years ago

For example to allow Node module resolution, like in this rollup file

import nodeResolve from 'rollup-plugin-node-resolve'
export default {
  entry: 'src/out-spec.js',
  plugins: [ nodeResolve() ],
  targets: [
    { dest: 'cypress/integration/out-spec.js', format: 'umd' }
  ]
}
bahmutov commented 8 years ago

blocked by https://github.com/bahmutov/rollem/issues/11

Tamaraa01x commented 1 year ago