mirror of https://github.com/node-red/node-red.git
initialise status.text to be blank string if not set.
(and change test to use .text rather than .message) (not that it matters at this level of test)pull/731/head
parent
c1d694a97c
commit
cc6e0937a0
|
@ -737,6 +737,7 @@ Flow.prototype.handleStatus = function(node,statusMessage) {
|
|||
}
|
||||
var message = {
|
||||
status: {
|
||||
text: "",
|
||||
source: {
|
||||
id: node.id,
|
||||
type: node.type,
|
||||
|
|
|
@ -32,7 +32,7 @@ describe('status Node', function() {
|
|||
var n2 = helper.getNode("n2");
|
||||
n1.should.have.property('name', 'status');
|
||||
n2.on("input", function(msg) {
|
||||
msg.message.should.equal("Oh dear");
|
||||
msg.text.should.equal("Oh dear");
|
||||
msg.should.have.property('source');
|
||||
msg.source.should.have.property('id',"12345");
|
||||
msg.source.should.have.property('type',"testnode");
|
||||
|
@ -40,7 +40,7 @@ describe('status Node', function() {
|
|||
done();
|
||||
});
|
||||
var mst = {
|
||||
message: "Oh dear",
|
||||
text: "Oh dear",
|
||||
source: {
|
||||
id: "12345",
|
||||
type: "testnode",
|
||||
|
|
Loading…
Reference in New Issue