Add test for silently ignoring messages when not initialised

pull/21833/head
James Salter 2021-07-21 07:42:55 +01:00
parent d4550c1a28
commit 3135e42586
1 changed files with 8 additions and 0 deletions

View File

@ -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);
});
});