-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
staging/sm has a lot of tests that don't use the test262 harness #4376
Comments
Looks like |
Actually, |
Did some digging. The issue is that the order of files in the To take a concrete example, sign.js#L5 has If the |
Oh, I finally figured out why I didn't catch it. test262-harness just concatenates the included files, and the function declaration is hoisted, so |
There are calls to
gc
,assertEq
, etc. One of the requirements to landing tostaging/
is that the tests are runnable with the usual test262 harness.@Ms2ger Can SM's harness-isms be linted against in the future to avoid landing tests that don't run?
The text was updated successfully, but these errors were encountered: