Browse Source

test: use common/fixtures in test-https-agent

PR-URL: https://github.com/nodejs/node/pull/15941
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v9.x-staging
jpaulptr 7 years ago
committed by James M Snell
parent
commit
ce33cffbcb
  1. 7
      test/parallel/test-https-agent.js

7
test/parallel/test-https-agent.js

@ -21,16 +21,17 @@
'use strict';
const common = require('../common');
if (!common.hasCrypto)
common.skip('missing crypto');
const fixtures = require('../common/fixtures');
const assert = require('assert');
const https = require('https');
const fs = require('fs');
const options = {
key: fs.readFileSync(`${common.fixturesDir}/keys/agent1-key.pem`),
cert: fs.readFileSync(`${common.fixturesDir}/keys/agent1-cert.pem`)
key: fixtures.readKey('agent1-key.pem'),
cert: fixtures.readKey('agent1-cert.pem')
};

Loading…
Cancel
Save