Skip to content

Commit 1022627

Browse files
committed
fix: skip unsupported hosts on windows
1 parent 1ecf7bb commit 1022627

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

appveyor.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ environment:
77
ESHOST_SKIP_CH: 1
88
ESHOST_SKIP_D8: 1
99
ESHOST_SKIP_ENGINE262: 1
10+
ESHOST_SKIP_GRAALJS: 1
1011
ESHOST_SKIP_HERMES: 1
1112
ESHOST_SKIP_JSC: 1
1213
ESHOST_SKIP_JSSHELL: 1
14+
ESHOST_SKIP_LIBJS: 1
1315
ESHOST_SKIP_NODE: 1
16+
ESHOST_SKIP_QJS: 1
17+
ESHOST_SKIP_XS: 1
1418
# Browsers
1519
ESHOST_SKIP_CHROME: 1
1620
ESHOST_SKIP_FIREFOX: 1

test/runify.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ if (process.env.CI) {
6868
if (isWindows) {
6969
hosts.forEach((record, index) => {
7070
const host = hostsOnWindows[index];
71-
if (record[1].hostPath) {
71+
if (host && record[1].hostPath) {
7272
if (record[0] === host[0]) {
7373
record[1].hostPath = host[1].hostPath;
7474
}

0 commit comments

Comments
 (0)