Merge pull request #21463 from calixteman/fix_unit_test

Adjust the 'BaseException' unit-test for the 'Error.stack' changes in Firefox
This commit is contained in:
calixteman 2026-06-16 21:43:49 +02:00 committed by GitHub
commit d28030f838
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,6 @@ describe("util", function () {
expect(exception.message).toEqual("Something went wrong");
expect(exception.name).toEqual("DerivedException");
expect(exception.foo).toEqual("bar");
expect(exception.stack).toContain("BaseExceptionClosure");
});
});