Skip to content

Commit

Permalink
fix: skip unsupported hosts on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Jun 6, 2022
1 parent 1ecf7bb commit 1022627
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ environment:
ESHOST_SKIP_CH: 1
ESHOST_SKIP_D8: 1
ESHOST_SKIP_ENGINE262: 1
ESHOST_SKIP_GRAALJS: 1
ESHOST_SKIP_HERMES: 1
ESHOST_SKIP_JSC: 1
ESHOST_SKIP_JSSHELL: 1
ESHOST_SKIP_LIBJS: 1
ESHOST_SKIP_NODE: 1
ESHOST_SKIP_QJS: 1
ESHOST_SKIP_XS: 1
# Browsers
ESHOST_SKIP_CHROME: 1
ESHOST_SKIP_FIREFOX: 1
Expand Down
2 changes: 1 addition & 1 deletion test/runify.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ if (process.env.CI) {
if (isWindows) {
hosts.forEach((record, index) => {
const host = hostsOnWindows[index];
if (record[1].hostPath) {
if (host && record[1].hostPath) {
if (record[0] === host[0]) {
record[1].hostPath = host[1].hostPath;
}
Expand Down

0 comments on commit 1022627

Please sign in to comment.