mirror of https://github.com/nodejs/node.git
Page:
CITGM known flakes
Pages
API changes between v0.10 and v0.12
API changes between v0.10 and v4
API changes between v0.4 and v0.6
API changes between v0.6 and v0.8
API changes between v0.8 and v0.10
Breaking Changes
Breaking changes between Node 7 and 8
Breaking changes between v4 LTS and v6 LTS
Breaking changes between v4 and v5
Breaking changes between v5 and v6
Breaking changes between v6 LTS and v8 LTS
Breaking changes between v6 and v7
CITGM Status
CITGM known flakes
CITGM results table
Creating a CTC Meeting Issue
ES6 Module Detection in Node
Flaky tests
Frequently Asked Questions
Home
Installing and Building Node.js
Installing io.js via package manager
Meetings: Creating a Hangouts On Air Event
Merging pull requests with Jenkins
Migrating IO polling from libev to libuv
Migrating from v0.2 to v0.3
Migrating from v0.2 to v0.4
Statically linked executable
Testing pull requests with Jenkins
Windows Environment
1
CITGM known flakes
Refael Ackermann edited this page 2017-07-18 16:32:32 -04:00
Table of Contents
-
new platforms:winston@v2.3.1
rhel72-s390x
there is one test that is timing sensitive
An instance of winston.Logger with no transports the add() method with a supported transport the startTimer() method when not passed a callback
✗ should respond with the appropriate message
» expected true, got false // logger-test.js:193
"when not passed a callback": {
topic: function (logger) {
var that = this;
var timer = logger.startTimer()
logger.once('logging', that.callback.bind(null, null));
setTimeout(function () {
timer.done();
}, 500);
},
"should respond with the appropriate message": function (err, transport, level, msg, meta) {
assert.isNull(err);
assert.equal(level, 'info');
assert.isNumber(meta.durationMs);
assert.isTrue(meta.durationMs >= 50 && meta.durationMs < 100);
}
}
-
new platforms:serialport@v4.0.7
ubuntu1404-64
at least two tests can timeout:
1) SerialPortBinding #list returns an array:
Error: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test.
2) SerialPort light integration .list:
Error: timeout of 2000ms exceeded. Ensure the done() callback is being called in this test.
it('returns an array', function(done) {
SerialPortBinding.list(function(err, data) {
assert.isNull(err);
assert.isArray(data);
done();
});
});
it('.list', function(done) {
SerialPort.list(done);
});