-
Notifications
You must be signed in to change notification settings - Fork 30.9k
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
test: replace common.fixturesDir with the fixtures module #16027
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
|
||
'use strict'; | ||
const common = require('../common'); | ||
const fixturesModule = require('../common/fixtures'); | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
@@ -31,7 +32,7 @@ const assert = require('assert'); | |
const hostExpect = 'localhost'; | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const fixtures = path.join(common.fixturesDir, 'keys'); | ||
const fixtures = path.join(fixturesModule.fixturesDir, 'keys'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This can be a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think a better change would be to update the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For instance... const options = {
key: fixtures.readSync('agent1-key.pem'),
cert: fixtures.readSync('agent1-cert.pem')
}; |
||
const options = { | ||
key: fs.readFileSync(`${fixtures}/agent1-key.pem`), | ||
cert: fs.readFileSync(`${fixtures}/agent1-cert.pem`) | ||
|
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.
Nit: this could/should be moved after the
common.hasCrypto
check.