1
0
Fork 0
firefox/toolkit/components/glean/tests/xpcshell/test_MillionQ.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

19 lines
534 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
add_task(function test_queue_longer_than_1k() {
// FOG needs a profile directory to put its data in.
do_get_profile();
// Before init, try and fill the preinit queue with > 1000 tasks.
const kIterations = 2000;
for (let _i = 0; _i < kIterations; _i++) {
Glean.testOnly.badCode.add(1);
}
Services.fog.initializeFOG();
Assert.equal(kIterations, Glean.testOnly.badCode.testGetValue());
});