UNPKG

nightwatchci

Version:

Simple nightwatch Continuous Integration tool

24 lines (20 loc) 434 B
module.exports = -> app = require '../index.js' path = require 'path' config = log_level: 'warn' noCompile: true createAdmin: true jobRunner: silent: true if !process.env.TRAVIS config.jobRunner = silent: true nightwatchConfig: args: [ '-e', 'chrome' ] testPath: path.join(process.cwd(), 'test/nightwatch') app.init config