Skip to content

Commit b0617cb

Browse files
chore: apply automated updates
1 parent ce88d82 commit b0617cb

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

test/find-all.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ describe("find-matchAll: basic", () => {
4444

4545
it("snapshot (compiled - empty)", async () => {
4646
await expect(
47-
(await format("snapshot.mjs", compileRouter(createRouter([]), { matchAll: true }).toString())).code,
47+
(await format("snapshot.mjs", compileRouter(createRouter([]), { matchAll: true }).toString()))
48+
.code,
4849
).toMatchFileSnapshot(".snapshot/compiled-all-empty.mjs");
4950
});
5051

test/find.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ describe("route matching", () => {
5050
});
5151

5252
it("snapshot (compiled)", async () => {
53-
await expect(((await format("snapshot.mjs", compiledLookup.toString())).code)).toMatchFileSnapshot(
54-
".snapshot/compiled-jit.mjs",
55-
);
53+
await expect(
54+
(await format("snapshot.mjs", compiledLookup.toString())).code,
55+
).toMatchFileSnapshot(".snapshot/compiled-jit.mjs");
5656

5757
await expect(
5858
(await format("snapshot.mjs", compileRouterToString(router, "findRoute"))).code,

0 commit comments

Comments
 (0)