Skip to content

Commit

Permalink
use explicit path
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmywarting committed Jan 4, 2022
1 parent 19dcd1e commit cdb0ad9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
const { agent: Agent } = require('superagent');
const methods = require('methods');
const http = require('http');
const Test = require('./test');
const Test = require('./test.js');

/**
* Initialize a new `TestAgent`.
Expand Down
2 changes: 1 addition & 1 deletion test/supertest.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use strict';

const request = require('..');
const https = require('https');
const fs = require('fs');
const path = require('path');
Expand All @@ -9,6 +8,7 @@ const express = require('express');
const bodyParser = require('body-parser');
const cookieParser = require('cookie-parser');
const nock = require('nock');
const request = require('../index.js');

process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';

Expand Down

0 comments on commit cdb0ad9

Please sign in to comment.