You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix test_lint.global_variables_are_usable not testing anything
If 'eval' is used, the linter disables its
error_assignment_to_undeclared_variable and
error_use_of_undeclared_variable diagnostics. This means that
test_lint.global_variables_are_usable and
test_lint.nodejs_global_variables_are_usable ends up testing nothing
because 'eval' us used (thus all interesting errors are suppressed).
Fix the test to check each variable separately, avoiding 'eval'
contamination.
0 commit comments