common.ts 421 B

123456789101112131415
  1. const _global = window as any;
  2. const beforeEach = _global.beforeEach;
  3. const afterEach = _global.afterEach;
  4. const before = _global.before;
  5. const describe = _global.describe;
  6. const it = _global.it;
  7. const sinon = _global.sinon;
  8. const expect = _global.expect;
  9. const angularMocks = {
  10. module: _global.module,
  11. inject: _global.inject,
  12. };
  13. export { beforeEach, afterEach, before, describe, it, sinon, expect, angularMocks };