0.6.3 • Published 7 years ago

ember-test-helpers v0.6.3

Weekly downloads
11,577
License
(MIT OR Apache-2....
Repository
github
Last release
7 years ago

ember-test-helpers Build Status

A test-framework-agnostic set of helpers for testing Ember.js applications.

Usage

This library is best used by way of a test-framework-specific wrapper, such as ember-qunit or ember-mocha.

Test Helpers

TestModule

The TestModule class is used to configure modules for unit testing different aspects of your Ember application. This class can be extended to create modules focused on particular types of unit tests.

TestModule is intended to be used in conjunction with modules specific to a test framework. For instance, you could create QUnit-compatible modules with a method such as:

function moduleFor(name, description, callbacks) {
  let module = new TestModule(name, description, callbacks);

  QUnit.module(module.name, {
    beforeEach() {
      return module.setup();
    },
    afterEach() {
      return module.teardown();
    }
  });
}

TestModule(name [, description [, callbacks]])

  • name - the full name of the test subject as it is registered in a container (e.g. 'controller:application', 'route:index', etc.).

  • description (optional) - the description of the test module as it should be displayed in test output. If omitted, defaults to name.

  • callbacks (optional) - an object that may include setup and teardown steps as well as the other units needed by tests.

  • callbacks.resolver (optional) - a Resolver instance to be used for the test module. Takes precedence over the globally set Resolver.

TestModuleForComponent

TestModuleForComponent extends TestModule to allow unit testing of Ember Components.


TestModuleForComponent(name [, description [, callbacks]])

  • name - the short name of the component that you'd use in a template (e.g. 'x-foo', 'color-picker', etc.).

TestModuleForModel

TestModuleForModel extends TestModule to allow unit testing of Ember Data Models.


TestModuleForModel(name [, description [, callbacks]])

  • name - the short name of the model that you'd use in store operations (e.g. 'user', 'assignmentGroup', etc.).

Miscellaneous Helpers

  • getContext / setContext - access the context to be used in each test.

  • setResolver - sets a Resolver globally which will be used to look up objects from each test's container.

  • isolatedContainer - creates a new isolated container for unit testing.

Collaborating

Installation

  • git clone <repository-url> this repository
  • cd ember-test-helpers
  • npm install

Running

Running Tests

  • npm test (Runs ember try:each to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit https://ember-cli.com/.

Attribution

Much of ember-test-helpers was extracted from the original ember-qunit, which was written by Stefan Penner, Robert Jackson, and Ryan Florence.

Copyright and License

Copyright 2015 Switchfly and contributors.

Dual-licensed under the Apache License, Version 2.0 and the MIT License.

0.7.0-beta.11

7 years ago

0.7.0-beta.10

7 years ago

0.7.0-beta.9

7 years ago

0.7.0-beta.8

7 years ago

0.7.0-beta.7

7 years ago

0.7.0-beta.6

7 years ago

0.7.0-beta.5

7 years ago

0.7.0-beta.4

7 years ago

0.7.0-beta.3

7 years ago

0.7.0-beta.2

7 years ago

0.7.0-beta.1

7 years ago

0.6.3

7 years ago

0.6.2

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.6.0-beta.1

7 years ago

0.5.34

8 years ago

0.5.33

8 years ago

0.5.32

8 years ago

0.5.31

8 years ago

0.5.30

8 years ago

0.5.29

8 years ago

0.5.28

8 years ago

0.5.27

8 years ago

0.5.26

8 years ago

0.5.25

8 years ago

0.5.24

8 years ago

0.5.23

8 years ago

0.5.22

8 years ago

0.5.21

8 years ago

0.5.20

8 years ago

0.5.19

8 years ago