Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use correct listenAddress for Karma on node 18+ #13968

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/Umbraco.Web.UI.Client/test/config/karma.conf.js
@@ -1,4 +1,4 @@
const jsdom = require("jsdom");

Check warning on line 1 in src/Umbraco.Web.UI.Client/test/config/karma.conf.js

View check run for this annotation

CodeScene Delta Analysis / CodeScene Cloud Delta Analysis (contrib)

❌ Getting worse: Large Method

module.exports increases from 79 to 80 lines of code, threshold = 70
module.exports = function (config) {

config.set({
Expand Down Expand Up @@ -79,6 +79,9 @@
// CLI --runner-port 9100
runnerPort: 9100,

// Add support for new DNS resolution in Node 17+
listenAddress: '::',

// enable / disable colors in the output (reporters and logs)
// CLI --colors --no-colors
colors: true,
Expand Down