Skip to content

Commit

Permalink
chore: use localhost as address to listen on in fake-amo-server
Browse files Browse the repository at this point in the history
  • Loading branch information
rpl committed Jan 15, 2024
1 parent 0fcf033 commit d0bf5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/fake-amo-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ http
process.exit(1);
}
})
.listen(8989, os.platform() === 'win32' ? '::1' : '127.0.0.1', () => {
.listen(8989, 'localhost', () => {
process.stdout.write('listening');
process.stdout.uncork();
});

0 comments on commit d0bf5fa

Please sign in to comment.