Skip to content

Commit b03fcb4

Browse files
committed
remove logging statements
1 parent 716cdaf commit b03fcb4

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

tests/unit/apiKey.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,6 @@ describe("API Key Route Tests", () => {
134134

135135
// Assertions
136136
expect(response.statusCode).toBe(400);
137-
console.log(response.body);
138137
expect(response.body).toHaveProperty("error");
139138
expect(response.body.error).toEqual(true);
140139
expect(response.body.name).toEqual("ValidationError");

tests/unit/functions/apiKey.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const countOccurrencesOfChar = (s: string, char: string): number => {
2626
describe("Audit Log tests", () => {
2727
test("API key is successfully created and validated", async () => {
2828
const { apiKey, hashedKey, keyId } = await createApiKey();
29-
console.log(apiKey, hashedKey, keyId)
3029
expect(apiKey.slice(0, 8)).toEqual("acmuiuc_");
3130
expect(keyId.length).toEqual(12);
3231
expect(countOccurrencesOfChar(apiKey, "_")).toEqual(3);

0 commit comments

Comments
 (0)