mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:07:36 +00:00
LibJS: Fix variable scoping issues in two tests
This commit is contained in:
parent
38fd980b0c
commit
793e1bf28a
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ describe("normal behavior", () => {
|
|||
var array = [1, 2, 3, 4, 5];
|
||||
|
||||
expect(
|
||||
arrayTwo.every((value, index, arr) => {
|
||||
array.every((value, index, arr) => {
|
||||
arr.push(6);
|
||||
return value <= 5;
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue