Angular: Move coreModule to app/angular and isolate angular usage more (#41433)

* moving coreModule to app/angular and isolating it more

* fixed ts issue
This commit is contained in:
Torkel Ödegaard
2021-11-09 08:37:16 +01:00
committed by GitHub
parent 8e778aa98f
commit 27f66a6df9
69 changed files with 91 additions and 106 deletions

View File

@@ -7,7 +7,7 @@ import { getAltSegmentsSelectables, getTagsSelectables, getTagsAsSegmentsSelecta
import { GraphiteSegment } from '../types';
import { createStore } from '../state/store';
jest.mock('app/core/utils/promiseToDigest', () => ({
jest.mock('app/angular/promiseToDigest', () => ({
promiseToDigest: (scope: any) => {
return (p: Promise<any>) => p;
},