Remove console output

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-11-04 15:55:14 -03:00
parent 4648305a77
commit 8e0371bdc0
1 changed files with 0 additions and 4 deletions

View File

@ -195,8 +195,6 @@ describe("HTTP Transport Binding Structured Receiver for CloudEvents v1.0", () =
.data(bindata)
.format();
console.log(payload);
var headers = {
"content-type":"application/cloudevents+json"
};
@ -204,8 +202,6 @@ describe("HTTP Transport Binding Structured Receiver for CloudEvents v1.0", () =
// act
var actual = receiver.parse(JSON.stringify(payload), headers);
console.log(actual);
// assert
expect(actual.getData()).to.equal(expected);
});