1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

LibJS/Tests: Skip flaky FinalizationRegistry.prototype.cleanupSome test

This commit is contained in:
Linus Groh 2021-08-15 16:44:01 +01:00
parent cda69704dc
commit fa8e9cb683

View file

@ -6,7 +6,8 @@ function registerInDifferentScope(registry) {
registry.register({}, {});
}
test("basic functionality", () => {
// Flaky test, investigate and fix :^)
test.skip("basic functionality", () => {
var registry = new FinalizationRegistry(() => {});
var count = 0;