Permalink
Switch branches/tags
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
24 lines (21 sloc) 466 Bytes
import Adapter from "ember-testing/adapters/adapter";
import { inspect } from "ember-metal/utils";
/**
This class implements the methods defined by Ember.Test.Adapter for the
QUnit testing framework.
@class QUnitAdapter
@namespace Ember.Test
@extends Ember.Test.Adapter
@public
*/
export default Adapter.extend({
asyncStart() {
QUnit.stop();
},
asyncEnd() {
QUnit.start();
},
exception(error) {
ok(false, inspect(error));
}
});