We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c33c63 commit 9d1072dCopy full SHA for 9d1072d
3 files changed
api/WebApi.ts
@@ -339,6 +339,9 @@ export class WebApi {
339
* @param url: the server url
340
*/
341
public isNoProxyHost = function(_url: string) {
342
+ if (!process.env.no_proxy) {
343
+ return false;
344
+ }
345
const noProxyDomains = (process.env.no_proxy || '')
346
.split(',')
347
.map(v => v.toLowerCase());
make.js
@@ -40,6 +40,8 @@ target.build = function() {
40
41
42
target.units = function() {
43
+ target.build();
44
+
45
pushd('test');
46
run('npm install ../_build');
47
popd();
test/units/tsconfig.json
@@ -0,0 +1,10 @@
1
+{
2
+ "compilerOptions": {
3
+ "target": "ES6",
4
+ "module": "commonjs",
5
+ "moduleResolution": "node"
6
+ },
7
+ "files": [
8
+ "tests.ts"
9
+ ]
10
+}
0 commit comments