fix failing testcase

This commit is contained in:
Quan HL
2023-05-07 17:25:13 +07:00
parent 4f486b2c0a
commit 522469ca89
2 changed files with 6 additions and 5 deletions

View File

@@ -106,17 +106,19 @@ test("test create-call call-hook basic authentication", async (t) => {
await p;
let obj = await getJSON(`http:127.0.0.1:3100/lastRequest/${from}`);
console.log(obj);
t.ok(
(obj.headers.Authorization === "Basic dXNlcm5hbWU6cGFzc3dvcmQ="),
obj.headers.Authorization === "Basic dXNlcm5hbWU6cGFzc3dvcmQ=",
"create-call: call-hook contains basic authentication header"
);
t.ok(
(obj.customerData.customer === 'acme'),
obj.body.customerdata.customer === "acme",
"create-call: metadata is working"
);
obj = await getJSON(`http:127.0.0.1:3100/lastRequest/${from}_callStatus`);
console.log(obj);
t.ok(
(obj.customerData.customer === 'acme'),
obj.body.customerData.customer === "acme",
"create-call: metadata is working"
);
disconnect();