1
0
Fork 0
firefox/toolkit/components/glean/tests/browser/browser_event_leak.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

26 lines
675 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(async () => {
Services.fog.testResetFOG(); // Needed for TV which reuses profiles on repeat
Assert.equal(
undefined,
Glean.testOnlyIpc.eventWithExtra.testGetValue(),
"Nothing to begin with"
);
Glean.testOnlyIpc.eventWithExtra.record({
extra1: "Some extra string",
extra2: 42,
extra3_longer_name: false,
});
Assert.equal(
1,
Glean.testOnlyIpc.eventWithExtra.testGetValue().length,
"One event? One event."
);
// AND NOW, FOR THE TRUE TEST:
// Will this leak memory all over the place?
});