emberjs/ember-mocha

Name: ember-mocha

Owner: Ember.js

Description: Mocha helpers for testing Ember.js applications

Created: 2014-09-20 04:50:35.0

Updated: 2018-01-02 23:31:37.0

Pushed: 2017-12-22 15:21:10.0

Homepage:

Size: 298

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

ember-mocha

Latest NPM release TravisCI Build Status

ember-mocha simplifies unit testing of Ember applications with Mocha by providing Mocha-specific wrappers around the helpers contained in ember-test-helpers.

Upgrading from an earlier version? Have a look at our Upgrade Guide below.

Installation
Installation with Ember CLI

In order to use Ember Mocha with Ember CLI, please follow the instructions for ember-cli-mocha.

Standalone Installation

Ember Mocha can also be installed with bower and used directly in any Ember project:

wer install ember-mocha

You can then choose to include the global (ember-mocha.js) or AMD (ember-mocha.amd.js) build when running your tests.

Usage
Setting the Resolver

You'll typically want to set a single resolver for your test suite:

rt resolver from './helpers/resolver';
rt { setResolver } from 'ember-mocha';

esolver(resolver);

If you want to use multiple resolvers in your test suite, you can also call setResolver in the beforeSetup callback of your test modules.

Setup Tests

The setupTest function can be used to setup a unit test for any kind of “module/unit” of your application that can be looked up in a container.

For example, the following is a unit test for the SidebarController:

rt { describe, it } from 'mocha';
rt { setupTest } from 'ember-mocha';

ribe('SidebarController', function() {
tupTest('controller:sidebar', {
// Specify the other units that are required for this test.
// needs: ['controller:foo']
;

 Replace this with your real tests.
('exists', function() {
var controller = this.subject();
expect(controller).to.be.ok;
;

The subject is specified as controller:sidebar, which is the key that will be used to look up this controller in the isolated container that will be created for this test.

Setup Component Tests

The setupComponentTest function is specifically designed to test components and provides additional render and $ helpers within a test's context.

rt { describe, it } from 'mocha';
rt { setupComponentTest } from 'ember-mocha';

ribe('GravatarImageComponent', function() {
tupComponentTest('gravatar-image', {
// specify the other units that are required for this test
// needs: ['component:foo', 'helper:bar']
;

('renders', function() {
// creates the component instance
var component = this.subject();
expect(component._state).to.equal('preRender');

// renders the component on the page
this.render();
expect(component._state).to.equal('inDOM');
;

Setup Model Tests

The setupModelTest function can be used to test Ember Data models and provides an additional store helper within a test's context.

rt { describe, it } from 'mocha';
rt { setupModelTest } from 'ember-mocha';

ribe('Contact', function() {
tupModelTest('contact', {
// Specify the other units that are required for this test.
needs: []
;

 Replace this with your real tests.
('exists', function() {
var model = this.subject();
// var store = this.store();
expect(model).to.be.ok;
;

Acceptance Tests

The setupAcceptanceTest function can be used to run acceptance tests as the name suggests. It will automatically setup an application instance for you, which is provided at this.application.

rt Ember from 'ember';
rt { describe, it } from 'mocha';
rt { setupAcceptanceTest } from 'ember-mocha';

Application = Ember.Application.extend({
otElement: '#ember-testing',


ribe('basic acceptance test', function() {
tupAcceptanceTest({ Application });

('can visit /', function() {
visit('/');

andThen(() => {
  expect(currentURL()).to.equal('/');
});
;

Using async/await

In case your project supports the async/await feature of ES2016 you can simplify the test function to this:

can visit /', async function() {
ait visit('/');
pect(currentURL()).to.equal('/');

Upgrading

Previous releases promoted the use of describeModule(), describeComponent() and describeModel() instead of the describe() function of Mocha itself. These functions have been deprecated and replaced by the setupTest() functions mentioned above. The following example will explain how to update your code.

Before:

rt {expect} from 'chai';
rt {it} from 'mocha';
rt {describeModule} from 'ember-mocha';

ribeModule(
oute:subscribers',
nit: Route: subscribers',

needs: ['service:notifications']

nction() {
it('exists', function() {
  let route = this.subject();
  expect(route).to.be.ok;
});


After:

rt {expect} from 'chai';
rt {it, describe} from 'mocha';
rt {setupTest} from 'ember-mocha';

ribe('Unit: Route: subscribers', function() {
tupTest('route:subscribers', {
needs: ['service:notifications']
;

('exists', function() {
let route = this.subject();
expect(route).to.be.ok;
;

Instead of refactoring all your files by hand we recommend to use the ember-mocha-codemods to automatically convert your tests:

install -g jscodeshift
deshift -t https://raw.githubusercontent.com/Turbo87/ember-mocha-codemods/master/import-it-from-mocha.js tests
deshift -t https://raw.githubusercontent.com/Turbo87/ember-mocha-codemods/master/new-testing-api.js tests
Contributing

Contributions are welcome. Please follow the instructions below to install and test this library.

Installation
install
Testing

In order to test in the browser:

start

… and then visit http://localhost:4200/tests.

In order to perform a CI test:

test
Copyright and License

Copyright 2014 Switchfly

This product includes software developed at Switchfly (http://www.switchfly.com).

NOTICE: Only our own original work is licensed under the terms of the Apache License Version 2.0. The licenses of some libraries might impose different redistribution or general licensing terms than those stated in the Apache License. Users and redistributors are hereby requested to verify these conditions and agree upon them.

This repository also contains the ember-mocha-adapter originally developed by Teddy Zeenny at https://github.com/teddyzeenny/ember-mocha-adapter/ under the MIT license.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.