How to use the rxjs-marbles/jasmine/angular.fakeSchedulers function in rxjs-marbles

To help you get started, we’ve selected a few rxjs-marbles 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 cartant / rxjs-marbles / examples / jasmine-angular / fake-spec.ts View on Github external
describe("fakeSchedulers", () => {
  it(
    "should support a timer",
    fakeSchedulers(() => {
      let received: number | undefined;
      timer(100).subscribe(value => (received = value));
      tick(50);
      expect(received).not.toBeDefined();
      tick(50);
      expect(received).toBe(0);
    })
  );

  it(
    "should support delay",
    fakeSchedulers(() => {
      let received: number | undefined;
      of(1)
        .pipe(delay(100))
        .subscribe(value => (received = value));