1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 11:58:13 +00:00

chore: format

This commit is contained in:
James Cook 2023-09-17 17:16:40 +01:00
parent eb327bbbeb
commit 4af17dfa2d
2 changed files with 20 additions and 22 deletions

View file

@ -45,7 +45,7 @@ export class ParentClient extends BaseClient {
if (response.status != 302 || !response.headers.has("set-cookie")) {
await response.body?.cancel(); // Make deno tests happy by closing the body, unsure whether this is needed for the actual library
throw new Error(
"Unauthenticated: ClassCharts didn't return authentication cookies"
"Unauthenticated: ClassCharts didn't return authentication cookies",
);
}

View file

@ -22,8 +22,7 @@ Deno.test("Throws when no password is provided", async () => {
Error,
"Password not provided",
);
}
);
});
Deno.test("Throws with invalid login", async () => {
const client = new ParentClient("invalid", "invalid");
@ -35,4 +34,3 @@ Deno.test("Throws with invalid login", async () => {
"Unauthenticated: ClassCharts didn't return authentication cookies",
);
});