ember-source
Version:
A JavaScript framework for creating ambitious web applications
26 lines (20 loc) • 547 B
JavaScript
import { checkWaiters, unregisterWaiter, registerWaiter } from './test/waiters.js';
/**
@module ember
*/
/**
This is a container for an assortment of testing related functionality:
* Choose your default test adapter (for your framework of choice).
* Register/Unregister additional test helpers.
* Setup callbacks to be fired when the test helpers are injected into
your application.
@class Test
@namespace Ember
@public
*/
const Test = {
registerWaiter,
unregisterWaiter,
checkWaiters
};
export { Test as default };