mirror of https://github.com/node-red/node-red.git
Update debug_spec for format changes
parent
9555e296a2
commit
8167f623e3
|
|
@ -222,7 +222,7 @@ describe('debug node', function() {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should truncated a long message', function(done) {
|
it('should truncate a long message', function(done) {
|
||||||
var flow = [{id:"n1", type:"debug" }];
|
var flow = [{id:"n1", type:"debug" }];
|
||||||
helper.load(debugNode, flow, function() {
|
helper.load(debugNode, flow, function() {
|
||||||
var n1 = helper.getNode("n1");
|
var n1 = helper.getNode("n1");
|
||||||
|
|
@ -234,7 +234,7 @@ describe('debug node', function() {
|
||||||
topic:"debug",
|
topic:"debug",
|
||||||
data:{
|
data:{
|
||||||
id:"n1",
|
id:"n1",
|
||||||
msg: Array(1001).join("X")+' ....',
|
msg: Array(1001).join("X")+'...',
|
||||||
property:"payload",
|
property:"payload",
|
||||||
format:"string [1001]"
|
format:"string [1001]"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue