Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed Jul 7, 2023
1 parent 4e934d2 commit 6974fd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/hook.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ describe("octokit.hook", () => {
JSON.stringify({
ok: true,
afterAddition: "works",
})
}),
);
});

Expand Down Expand Up @@ -164,7 +164,7 @@ describe("octokit.hook", () => {
expect(JSON.stringify(data)).toStrictEqual(
JSON.stringify({
ok: true,
})
}),
);
});

Expand Down Expand Up @@ -199,7 +199,7 @@ describe("octokit.hook", () => {
expect(JSON.stringify(data)).toStrictEqual(
JSON.stringify({
ok: true,
})
}),
);
});

Expand Down
2 changes: 1 addition & 1 deletion test/issues.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe("issues", () => {

expect(response.status).toEqual(200);
expect(JSON.stringify(response.data)).toStrictEqual(
JSON.stringify({ ok: true })
JSON.stringify({ ok: true }),
);
});
});

0 comments on commit 6974fd6

Please sign in to comment.