mirror of https://github.com/vector-im/riot-web
Add test for silently ignoring messages when not initialised
parent
d4550c1a28
commit
3135e42586
|
@ -81,4 +81,12 @@ describe("PosthogAnalytics", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("Should silently not send messages if not inititalised", () => {
|
||||||
|
analytics.track<ITestEvent>("jest_test_event", {
|
||||||
|
foo: "bar",
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(fakePosthog.capture.mock.calls.length).toBe(0);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue