2014-09-25 14:04:46 -07:00
|
|
|
export var describe = window.describe;
|
2014-10-01 22:05:46 -07:00
|
|
|
export var xdescribe = window.xdescribe;
|
2014-09-28 13:55:01 -07:00
|
|
|
export var ddescribe = window.ddescribe;
|
2014-09-25 14:04:46 -07:00
|
|
|
export var it = window.it;
|
2014-10-01 22:05:46 -07:00
|
|
|
export var xit = window.xit;
|
2014-09-28 13:55:01 -07:00
|
|
|
export var iit = window.iit;
|
2014-09-25 14:04:46 -07:00
|
|
|
export var beforeEach = window.beforeEach;
|
|
|
|
export var afterEach = window.afterEach;
|
|
|
|
export var expect = window.expect;
|
|
|
|
|
|
|
|
// To make testing consistent between dart and js
|
2014-09-26 17:38:38 -07:00
|
|
|
window.print = function(msg) {
|
|
|
|
if (window.dump) {
|
|
|
|
window.dump(msg);
|
|
|
|
} else {
|
|
|
|
window.console.log(msg);
|
|
|
|
}
|
|
|
|
};
|