Codebase list node-es6-promise / debian/4.2.8-4 testem.js
debian/4.2.8-4

Tree @debian/4.2.8-4 (Download .tar.gz)

testem.js @debian/4.2.8-4raw · history · blame

'use strict';

module.exports = {
  test_page: "test/index.html",
  parallel: 5,
  frameworks: "mocha",
  launchers: {
    Mocha: {
      "command": `./node_modules/.bin/mocha ${process.env.EMBER_CLI_TEST_OUTPUT}/test/browserify.js -R tap`,
      "protocol": "tap"
    }
  },
  launch_in_ci:  [
    "Phantomjs",
    "Mocha"
  ],
  launch_in_dev: [
    "Phantomjs",
    "Mocha"
  ],
};