I recently implemented [Iterator.zip](https://github.com/LadybirdBrowser/ladybird/commit/aa7eb95f9840ab66e10948dc91bb434e461f3841) and [Iterator.zipKeyed](https://github.com/LadybirdBrowser/ladybird/commit/100ed4c6a46d40b98772120a979ae1bccbb33b4f) for LibJS. According to test262.fyi, we are failing the following tests: https://test262.fyi/#built-ins/Iterator/zip|libjs https://test262.fyi/#built-ins/Iterator/zipKeyed|libjs https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zip/basic-longest.js https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zip/basic-shortest.js https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zipKeyed/basic-longest.js https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zipKeyed/basic-shortest.js However, these pass on our own test runner and when I run test262 locally: https://ladybirdbrowser.github.io/libjs-website/test262/per-file/?path=test/built-ins/Iterator/zip https://ladybirdbrowser.github.io/libjs-website/test262/per-file/?path=test/built-ins/Iterator/zipKeyed So I was hoping to dig into some logs to see why they are failing for test262.fyi. Thanks!
I recently implemented Iterator.zip and Iterator.zipKeyed for LibJS. According to test262.fyi, we are failing the following tests:
https://test262.fyi/#built-ins/Iterator/zip|libjs
https://test262.fyi/#built-ins/Iterator/zipKeyed|libjs
https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zip/basic-longest.js
https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zip/basic-shortest.js
https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zipKeyed/basic-longest.js
https://github.com/tc39/test262/blob/ac3a4ba/test/built-ins/Iterator/zipKeyed/basic-shortest.js
However, these pass on our own test runner and when I run test262 locally:
https://ladybirdbrowser.github.io/libjs-website/test262/per-file/?path=test/built-ins/Iterator/zip
https://ladybirdbrowser.github.io/libjs-website/test262/per-file/?path=test/built-ins/Iterator/zipKeyed
So I was hoping to dig into some logs to see why they are failing for test262.fyi. Thanks!