mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
test failures show more
This commit is contained in:
parent
85c93d2af5
commit
f0d225aa64
@ -45,7 +45,7 @@ test = function(name, action) {
|
||||
process.stdout.write('.');
|
||||
}
|
||||
}catch(e) {
|
||||
console.log('E');
|
||||
process.stdout.write('E');
|
||||
test.errors.push(e);
|
||||
}
|
||||
};
|
||||
@ -61,6 +61,9 @@ process.on('exit', function() {
|
||||
test.ignored.forEach(function(name) {
|
||||
console.log("Ignored: " + name);
|
||||
});
|
||||
test.errors.forEach(function(error) {
|
||||
throw error;
|
||||
});
|
||||
});
|
||||
|
||||
MemoryStream = function() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user