Skip to content

Commit

Permalink
Karma fix for node18, listen on '::'
Browse files Browse the repository at this point in the history
See karma-runner/karma#3730 for more details
  • Loading branch information
ljowen committed Apr 9, 2024
1 parent a728a19 commit c69982c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildprocess/createKarmaBaseConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ module.exports = function (config) {
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ["jasmine"],
listenAddress: "::",

// list of files / patterns to load in the browser
files: [
Expand Down Expand Up @@ -70,7 +71,7 @@ module.exports = function (config) {
suppressErrorSummary: false,
suppressFailed: false,
suppressPassed: true,
suppressSkipped: false
suppressSkipped: true
}
};
};

0 comments on commit c69982c

Please sign in to comment.