@rishavtandon93/ng-select-aria
Version:
Angular ng-select - All in One UI Select, Multiselect and Autocomplete
24 lines (18 loc) • 377 B
text/typescript
import { Injectable, NgZone } from '@angular/core';
()
export class MockNgZone extends NgZone {
constructor() {
super({ enableLongStackTrace: true });
}
run(fn: () => any): any {
return fn();
}
runOutsideAngular(fn: () => any): any {
return fn();
}
}
()
export class MockConsole {
warn() {
}
}