Skip to content

Commit e259081

Browse files
committed
fix: add CI debug line and fix config typo
1 parent b0e5844 commit e259081

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

proxy.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"jwtConfig": {
7171
"clientID": "",
7272
"authorityURL": "",
73-
"expecetedAudience": ""
73+
"expectedAudience": ""
7474
}
7575
}
7676
],

test/testLogin.test.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ describe('auth', async () => {
3131
password: 'admin',
3232
});
3333

34+
// Debug CI
35+
console.log("DEBUG testLogin.test.js: ");
36+
console.log(`res.body: ${JSON.stringify(res.body)}`);
37+
console.log(`res.headers: ${JSON.stringify(res.headers)}`);
38+
console.log(`res.status: ${res.status}`);
39+
console.log(`res.text: ${res.text}`);
40+
3441
expect(res).to.have.cookie('connect.sid');
3542
res.should.have.status(200);
3643

0 commit comments

Comments
 (0)