You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
421 B
15 lines
421 B
const _global = window as any;
|
|
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;
|
|
|
|
const angularMocks = {
|
|
module: _global.module,
|
|
inject: _global.inject,
|
|
};
|
|
|
|
export { beforeEach, afterEach, before, describe, it, sinon, expect, angularMocks };
|
|
|