Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test/known_issues/test-http2-trailers-after-session-close.js
  • Loading branch information
Trott authored Feb 19, 2023
commit 2f640df31b05ba191abded95b2af4ef8b9aeeec5
7 changes: 6 additions & 1 deletion test/known_issues/test-http2-trailers-after-session-close.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

// Fixes: https://github.com/nodejs/node/issues/42713
const common = require('../common');
if (!common.hasCrypto)
if (!common.hasCrypto) {
// Remove require('assert').fail when issue is fixed and test
// is moved out of the known_issues directory.
require('assert').fail('missing crypto');
common.skip('missing crypto');
Comment thread
Trott marked this conversation as resolved.
}
// Change require('assert').fail to common.skip when issue is fixed and test
// is moved out of the known_issues directory
require('assert').fail('missing crypto');
Expand Down