mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 02:12:09 -05:00
LibJS/Tests: Disable one Array.prototype.toSpliced test for now
It keeps failing on i686, and will until we've updated a bunch of size_t APIs in the codebase to u64.
This commit is contained in:
parent
b8bc64c1c7
commit
28a3c064c5
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ describe("errors", () => {
|
|||
}).toThrowWithMessage(TypeError, "ToObject on null or undefined");
|
||||
});
|
||||
|
||||
test("maximum array size exceeded", () => {
|
||||
test.skip("maximum array size exceeded", () => {
|
||||
const a = { length: 2 ** 53 - 1 };
|
||||
expect(() => {
|
||||
Array.prototype.toSpliced.call(a, 0, 0, "foo");
|
||||
|
|
Loading…
Add table
Reference in a new issue