2018-09-03 04:30:44 -05:00
|
|
|
const _global = window as any;
|
2018-08-26 14:52:57 -05:00
|
|
|
const beforeEach = _global.beforeEach;
|
|
|
|
const afterEach = _global.afterEach;
|
|
|
|
const before = _global.before;
|
|
|
|
const describe = _global.describe;
|
|
|
|
const it = _global.it;
|
|
|
|
const sinon = _global.sinon;
|
|
|
|
const expect = _global.expect;
|
2015-09-16 11:48:41 -05:00
|
|
|
|
2018-08-26 14:52:57 -05:00
|
|
|
const angularMocks = {
|
2015-09-28 08:23:53 -05:00
|
|
|
module: _global.module,
|
2016-01-09 06:21:16 -06:00
|
|
|
inject: _global.inject,
|
2015-09-28 08:23:53 -05:00
|
|
|
};
|
|
|
|
|
2018-08-26 14:52:57 -05:00
|
|
|
export { beforeEach, afterEach, before, describe, it, sinon, expect, angularMocks };
|