How to use the @delon/testing.checkDelay function in @delon/testing

To help you get started, we’ve selected a few @delon/testing examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ng-alain / delon / packages / chart / mini-area / mini-area.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2MiniAreaModule, TestComponent)));
});
github ng-alain / delon / packages / chart / radar / radar.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2RadarModule, TestComponent)));
});
github ng-alain / delon / packages / chart / pie / pie.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2PieModule, TestFullComponent)));
});
github ng-alain / delon / packages / chart / timeline / timeline.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2TimelineModule, TestComponent)));
});
github ng-alain / delon / packages / chart / gauge / gauge.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2GaugeModule, TestComponent)));
});
github ng-alain / delon / packages / chart / tag-cloud / tag-cloud.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2TagCloudModule, TestComponent)));
});
github ng-alain / delon / packages / chart / water-wave / water-wave.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2WaterWaveModule, TestComponent)));
});
github ng-alain / delon / packages / chart / single-bar / single-bar.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2SingleBarModule, TestComponent)));
});
github ng-alain / delon / packages / chart / mini-bar / mini-bar.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2MiniBarModule, TestComponent)));
});
github ng-alain / delon / packages / chart / bar / bar.spec.ts View on Github external
  it('#delay', fakeAsync(() => checkDelay(G2BarModule, TestComponent)));
});