fixup: correct comments
Signed-off-by: Lance Ball <lball@redhat.com>
This commit is contained in:
parent
ef453b0486
commit
b4090cd4bf
|
|
@ -79,10 +79,9 @@ describe("emitterFor() defaults", () => {
|
||||||
it("Supports HTTP binding, structured mode", () => {
|
it("Supports HTTP binding, structured mode", () => {
|
||||||
function transport(message: Message): Promise<unknown> {
|
function transport(message: Message): Promise<unknown> {
|
||||||
console.error(message);
|
console.error(message);
|
||||||
// A binary message will have the source attribute as a header
|
// A structured message will have the application/cloudevents+json header
|
||||||
expect(message.headers["content-type"]).to.equal(CONSTANTS.DEFAULT_CE_CONTENT_TYPE);
|
expect(message.headers["content-type"]).to.equal(CONSTANTS.DEFAULT_CE_CONTENT_TYPE);
|
||||||
const body = JSON.parse(message.body as string);
|
const body = JSON.parse(message.body as string);
|
||||||
/* @ts-ignore */
|
|
||||||
expect(body.id).to.equal("1234");
|
expect(body.id).to.equal("1234");
|
||||||
return Promise.resolve();
|
return Promise.resolve();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue