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

@ -2,7 +2,7 @@ import { assertRejects } from "~/deps_dev.ts";
import { ParentClient } from "~/src/core/parentClient.ts";
Deno.test("Throws when no email is provided", async () => {
const client = new ParentClient("","password");
const client = new ParentClient("", "password");
await assertRejects(
async () => {
await client.login();
@ -14,7 +14,7 @@ Deno.test("Throws when no email is provided", async () => {
// throws when no password is provided
Deno.test("Throws when no password is provided", async () => {
const client = new ParentClient("email","");
const client = new ParentClient("email", "");
await assertRejects(
async () => {
await client.login();
@ -22,11 +22,10 @@ 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");
const client = new ParentClient("invalid", "invalid");
await assertRejects(
async () => {
await client.login();
@ -34,5 +33,4 @@ Deno.test("Throws with invalid login", async () => {
Error,
"Unauthenticated: ClassCharts didn't return authentication cookies",
);
});
});