Skip to content

npm, @ignore, seperateSteps

Compare
Choose a tag to compare
@albertjan albertjan released this 07 Dec 09:41
· 245 commits to master since this release

Thanks to @simonihmig, @sfbwalder and @dejavs we have new features and better future proofness.

  • #34 Include yadda from npm instead of bower: because of the way yadda was built and put on bower, it was interfering with the ember test runner by moving to npm, and ember-cli-browserify we no longer have this problem.
  • #37 If you use mocha there's a new option you can enable, which will give you better looking tests and better traceability on asynchronous tests. Do this by changing the call to EmberApp in ember-cli-build.js, like this:
var app = new EmberApp(defaults, {
  'ember-cli-yadda': {
    'separateSteps': true
  }
  // Add options here
});

screen shot 2016-12-06 at 15 10 47

- #38 Add the ability to skip tests by adding the `@ignore` annotation.