Skip to content

Commit 3fd55a2

Browse files
author
Logan Graham
committed
use local ip instead of localhost
1 parent d32f712 commit 3fd55a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/sauce-docs-checker/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let moment = require('moment');
1212
const core = require('@actions/core');
1313

1414
let wiki_url = 'https://wiki.saucelabs.com';
15-
let docs_url = 'http://localhost:8000/';
15+
let docs_url = 'http://127.0.0.1:8000/';
1616
let result = {};
1717
let wiki_result = {};
1818
let wiki_map = {};

tests/sauce-docs-checker/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"start": "wait-on http://localhost:8000 && node index.js"
7+
"start": "wait-on http://127.0.0.1:8000 && node index.js"
88
},
99
"repository": {
1010
"type": "git",

0 commit comments

Comments
 (0)