mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
* webpack poc, this is not going to work for plugins, dam * tech: webpack and systemjs for plugins starting to work * tech: webpack and systemjs combo starting to work * tech: webpack + karma tests progress * tech: webpack + karma progress * tech: working on tests * tech: webpack * tech: webpack + karma, all tests pass * tech: webpack + karma, all tests pass * tech: webpack all tests pass * webpack: getting closer * tech: webpack progress * webpack: further build refinements * webpack: ng annotate fixes * webpack: optimized build fix * tech: minor fix for elasticsearch * tech: webpack + ace editor * tech: restored lodash move mixin compatability * tech: added enzyme react test and upgraded to react v16 * tech: package version fix * tech: added testdata to built in bundle * webpack: sass progress * tech: prod & dev build is working for the sass * tech: clean up unused grunt stuff and moved to scripts folder * tech: added vendor and manifest chunks, updated readme and docs * tech: webpack finishing touches
25 lines
420 B
TypeScript
25 lines
420 B
TypeScript
var _global = <any>(window);
|
|
var beforeEach = _global.beforeEach;
|
|
var afterEach = _global.afterEach;
|
|
var before = _global.before;
|
|
var describe = _global.describe;
|
|
var it = _global.it;
|
|
var sinon = _global.sinon;
|
|
var expect = _global.expect;
|
|
|
|
var angularMocks = {
|
|
module: _global.module,
|
|
inject: _global.inject,
|
|
};
|
|
|
|
export {
|
|
beforeEach,
|
|
afterEach,
|
|
before,
|
|
describe,
|
|
it,
|
|
sinon,
|
|
expect,
|
|
angularMocks,
|
|
};
|