mirror of https://github.com/grafana/grafana
remove exported test globals from test/lib/common (#50256)
parent
22fbcebabf
commit
6fcb2cd307
@ -1,15 +1,9 @@ |
|||||||
const _global = window as any; |
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 sinon = _global.sinon; |
||||||
const expect = _global.expect; |
|
||||||
|
|
||||||
const angularMocks = { |
const angularMocks = { |
||||||
module: _global.module, |
module: _global.module, |
||||||
inject: _global.inject, |
inject: _global.inject, |
||||||
}; |
}; |
||||||
|
|
||||||
export { beforeEach, afterEach, before, describe, it, sinon, expect, angularMocks }; |
export { sinon, angularMocks }; |
||||||
|
Loading…
Reference in new issue