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
Next Next commit
test: replaced fs.readSync with fixtures.readSync
NINA 2017 Code and Learn session for first time contributors.  This
touched test/parallel/test-https-socket-options.js to replace
common.fixturesDir
  • Loading branch information
Lam Chan committed Oct 6, 2017
commit 06cf9f22aa9c80f1211f1c1b5fa74b302c43d30c
5 changes: 3 additions & 2 deletions test/parallel/test-https-socket-options.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: can you please move this after the common.hasCrypto check?


if (!common.hasCrypto)
common.skip('missing crypto');
Expand All @@ -30,8 +31,8 @@ const fs = require('fs');
const http = require('http');

const options = {
key: fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`),
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`)
key: fixtures.readSync(`/keys/agent1-key.pem`),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could be readKey method instead of readSync

cert: fixtures.readSync(`/keys/agent1-cert.pem`)
};

const body = 'hello world\n';
Expand Down