-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
tests(smoke): remove console.timeline() call #5560
Conversation
@@ -17,7 +17,7 @@ module.exports = [ | |||
score: 0, | |||
details: { | |||
items: { | |||
length: '>3', | |||
length: 5, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
6️⃣
@@ -306,8 +306,6 @@ <h2>Do better web tester page</h2> | |||
MediaStreamTrack.getSources(); // Should eventually FAIL | |||
} catch(e) {} | |||
|
|||
console.timeline(); // Should eventually FAIL |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the Should eventually FAIL
seems to be a signal that at some point in the future we expected that this would trigger a deprecation?
we assert that 3 deprecations are found in our expectations, the 3 real ones + 2 fake ones (no more fake ones after this PR)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice sleuthing! 🔍 🕵️♀️
@paulirish bisected the regression to a V8 roll that removed console.timeline, we call this method in our smoke tests so the test script was erroring and not actually executing our intentional failures :)