Skip to content

Commit

Permalink
replace duplicate test from https
Browse files Browse the repository at this point in the history
Closes #137
  • Loading branch information
floatdrop committed Jan 15, 2016
1 parent a64e57f commit 27313bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/https.js
Expand Up @@ -41,8 +41,8 @@ test.before('setup', async () => {
await s.listen(s.port);
});

test('make request to https server', async t => {
t.ok((await got('https://google.com', {strictSSL: true})).body);
test('make request to https server without ca', async t => {
t.ok((await got(s.url, {rejectUnauthorized: false})).body);
});

test('make request to https server with ca', async t => {
Expand Down

0 comments on commit 27313bd

Please sign in to comment.