Browse Source

test: refactor test-cluster-basic

* Use common.mustNotCall() to check that callback is not invoked.
* Add space per test writing guide.

PR-URL: https://github.com/nodejs/node/pull/13905
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v6.x
Rich Trott 8 years ago
committed by Myles Borins
parent
commit
74945dd18a
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 3
      test/parallel/test-cluster-basic.js

3
test/parallel/test-cluster-basic.js

@ -1,5 +1,6 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const cluster = require('cluster');
@ -14,7 +15,7 @@ function forEach(obj, fn) {
if (cluster.isWorker) {
require('http').Server(common.noop).listen(0, '127.0.0.1');
require('http').Server(common.mustNotCall()).listen(0, '127.0.0.1');
} else if (cluster.isMaster) {
const checks = {

Loading…
Cancel
Save