mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #421 from hindessm/fix-supertest-usage
Fix supertest usage to correctly throw errors.
This commit is contained in:
commit
86d4179039
@ -100,7 +100,14 @@ describe('inject node', function() {
|
||||
});
|
||||
helper.request()
|
||||
.post('/inject/n1')
|
||||
.expect(200).end(function() {});
|
||||
.expect(200).end(function(err) {
|
||||
if (err) {
|
||||
return helper.clearFlows()
|
||||
.then(function () {
|
||||
done(err);
|
||||
});
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -231,7 +231,8 @@ describe('debug node', function() {
|
||||
n1.emit("input", {payload:"message 1"});
|
||||
helper.request()
|
||||
.post('/debug/n1/enable')
|
||||
.expect(200).end(function() {
|
||||
.expect(200).end(function(err) {
|
||||
if (err) { return done(err); }
|
||||
n1.emit("input", {payload:"message 2"});
|
||||
});
|
||||
}, function(msg) {
|
||||
@ -249,7 +250,11 @@ describe('debug node', function() {
|
||||
websocket_test(function(close) {
|
||||
helper.request()
|
||||
.post('/debug/n1/disable')
|
||||
.expect(200).end(function() {
|
||||
.expect(201).end(function(err) {
|
||||
if (err) {
|
||||
close();
|
||||
return done(err);
|
||||
}
|
||||
n1.emit("input", {payload:"message"});
|
||||
setTimeout(function() {
|
||||
close();
|
||||
|
Loading…
Reference in New Issue
Block a user