-
-
Notifications
You must be signed in to change notification settings - Fork 334
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
fix(324): Show error when no worker support is found #325
Conversation
test/run.test.js
Outdated
@@ -366,7 +366,7 @@ test('run should accept a unix socket/windows pipe', (t) => { | |||
}) | |||
|
|||
for (let i = 1; i <= 5; i++) { | |||
test(`run should count all ${i}xx status codes`, (t) => { | |||
test(`run should count all ${i}xx status codes`, { skip: true }, (t) => { |
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.
Has to disable this temporarily as it fails consistently only on node 15.6.0.
We may need to investigate this separately. Will create an issue for it.
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.
Can you please make it skip only on node v15?
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.
Done
test/run.test.js
Outdated
@@ -366,7 +366,7 @@ test('run should accept a unix socket/windows pipe', (t) => { | |||
}) | |||
|
|||
for (let i = 1; i <= 5; i++) { | |||
test(`run should count all ${i}xx status codes`, (t) => { | |||
test(`run should count all ${i}xx status codes`, { skip: true }, (t) => { |
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.
Can you please make it skip only on node v15?
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.
tiny nit and we can land
Co-authored-by: Matteo Collina <[email protected]>
Fixes #324