mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
test: guarantee test runs in test-readline-keys
Use common.mustCall() to guarantee that test functions (created by a factory function) are run. PR-URL: https://github.com/nodejs/node/pull/11023 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
'use strict';
|
||||
require('../common');
|
||||
const common = require('../common');
|
||||
const PassThrough = require('stream').PassThrough;
|
||||
const assert = require('assert');
|
||||
const inherits = require('util').inherits;
|
||||
@@ -55,7 +55,7 @@ function addTest(sequences, expectedKeys) {
|
||||
|
||||
const addKeyIntervalTest = (sequences, expectedKeys, interval = 550,
|
||||
assertDelay = 550) => {
|
||||
return (next) => () => {
|
||||
const fn = common.mustCall((next) => () => {
|
||||
|
||||
if (!Array.isArray(sequences)) {
|
||||
sequences = [ sequences ];
|
||||
@@ -84,7 +84,8 @@ const addKeyIntervalTest = (sequences, expectedKeys, interval = 550,
|
||||
}
|
||||
};
|
||||
emitKeys(sequences);
|
||||
};
|
||||
});
|
||||
return fn;
|
||||
};
|
||||
|
||||
// regular alphanumerics
|
||||
|
||||
Reference in New Issue
Block a user