https://github.com/ember-cli/ember-cli-mocha
Mocha and Chai tests for ember-cli applications
https://github.com/ember-cli/ember-cli-mocha
ember ember-cli ember-cli-addon mocha
Last synced: about 2 months ago
JSON representation
Mocha and Chai tests for ember-cli applications
- Host: GitHub
- URL: https://github.com/ember-cli/ember-cli-mocha
- Owner: ember-cli
- License: apache-2.0
- Created: 2014-11-11T21:41:08.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2019-05-12T20:39:21.000Z (over 6 years ago)
- Last Synced: 2024-12-05T10:41:39.965Z (10 months ago)
- Topics: ember, ember-cli, ember-cli-addon, mocha
- Language: JavaScript
- Homepage:
- Size: 727 KB
- Stars: 147
- Watchers: 15
- Forks: 54
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# ember-cli-mocha
**NOTE: This addon has been deprecated! Please use ember-mocha directly instead.**
## Migrating to `ember-mocha`
To upgrade from `ember-cli-mocha` to `ember-mocha` perform the following:
### `yarn`
* `yarn remove ember-cli-mocha`
* `yarn add -D ember-mocha`
* Update `tests/test-helper.js` to replace any imports from `ember-cli-mocha` with an import from `ember-mocha`.### `npm`
* `npm uninstall --save-dev ember-cli-mocha`
* `npm install --save-dev ember-mocha`
* Update `tests/test-helper.js` to replace any imports from `ember-cli-mocha` with an import from `ember-mocha`.