mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
4aa227dd84
* tech: investigating karma + jest mix * tech: migrating tests to jest * tech: moved anoter test file to jest * test: migrated two more test files to jest * test: updated readme and made test fail to verify that it causes CI build failure * tech: added code coverage for jest tests * tech: testing codecov coverage * tech: migrated more tests * tech: migrated template srv to typescript and the tests to jest * tech: minor build fix * tech: build fixes * build: another attempt at fixing go test with coverage
7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
declare var global: NodeJS.Global;
|
|
|
|
(<any>global).requestAnimationFrame = (callback) => {
|
|
setTimeout(callback, 0);
|
|
};
|
|
|