2015-09-16 11:48:41 -05:00
|
|
|
///<reference path="../../app/headers/common.d.ts" />
|
|
|
|
|
|
|
|
var _global = <any>(window);
|
|
|
|
var beforeEach = _global.beforeEach;
|
2016-01-09 06:21:16 -06:00
|
|
|
var before = _global.before;
|
2015-09-16 11:48:41 -05:00
|
|
|
var describe = _global.describe;
|
|
|
|
var it = _global.it;
|
|
|
|
var sinon = _global.sinon;
|
|
|
|
var expect = _global.expect;
|
|
|
|
|
2015-09-28 08:23:53 -05:00
|
|
|
var angularMocks = {
|
|
|
|
module: _global.module,
|
2016-01-09 06:21:16 -06:00
|
|
|
inject: _global.inject,
|
2015-09-28 08:23:53 -05:00
|
|
|
};
|
|
|
|
|
2015-09-16 11:48:41 -05:00
|
|
|
export {
|
|
|
|
beforeEach,
|
2016-01-09 06:21:16 -06:00
|
|
|
before,
|
2015-09-16 11:48:41 -05:00
|
|
|
describe,
|
|
|
|
it,
|
|
|
|
sinon,
|
2015-09-28 08:23:53 -05:00
|
|
|
expect,
|
|
|
|
angularMocks,
|
2017-04-20 04:16:37 -05:00
|
|
|
};
|