Use top-level warn in JS errors check (#28745)

This commit is contained in:
Matt Jankowski 2024-01-15 16:26:11 -05:00 committed by GitHub
parent 7f471e70c0
commit b4c332104a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,8 +9,8 @@ RSpec.configure do |config|
expect(error.level).to_not eq('SEVERE'), error.message
next unless error.level == 'WARNING'
$stderr.warn 'WARN: javascript warning'
$stderr.warn error.message
warn 'WARN: javascript warning'
warn error.message
end
end
end