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

chore: remove comment

This commit is contained in:
James Cook 2023-09-17 17:18:12 +01:00
parent 4af17dfa2d
commit c6fbc1585c

View file

@ -12,7 +12,6 @@ Deno.test("Throws when no email is provided", async () => {
); );
}); });
// throws when no password is provided
Deno.test("Throws when no password is provided", async () => { Deno.test("Throws when no password is provided", async () => {
const client = new ParentClient("email", ""); const client = new ParentClient("email", "");
await assertRejects( await assertRejects(
@ -24,7 +23,7 @@ Deno.test("Throws when no password is provided", async () => {
); );
}); });
Deno.test("Throws with invalid login", async () => { Deno.test("Throws with invalid username and password", async () => {
const client = new ParentClient("invalid", "invalid"); const client = new ParentClient("invalid", "invalid");
await assertRejects( await assertRejects(
async () => { async () => {