Skip to content

Commit 583b983

Browse files
committed
test: change test names
1 parent c8c06df commit 583b983

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/utils/checkAuth.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe("checkAuth", () => {
6161
});
6262
});
6363

64-
it("error when domain supplied", async () => {
64+
it("should error when domain is null", async () => {
6565
// @ts-expect-error Testing error case
6666
const result = await CheckAuth.checkAuth({ domain: null, clientId });
6767
expect(result).toEqual({
@@ -70,7 +70,7 @@ describe("checkAuth", () => {
7070
});
7171
});
7272

73-
it("error when clientId supplied", async () => {
73+
it("should error when clientId is null", async () => {
7474
// @ts-expect-error Testing error case
7575
const result = await CheckAuth.checkAuth({ domain, clientId: null });
7676
expect(result).toEqual({

0 commit comments

Comments
 (0)