Skip to content

Commit 6c4c7db

Browse files
authored
chore(deps-dev): bump prettier from 3.6.2 to 3.8.2 (#2596)
2 parents deb10a3 + b554528 commit 6c4c7db

4 files changed

Lines changed: 18 additions & 22 deletions

File tree

pnpm-lock.yaml

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/helpers/with-page-auth-required.test.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,8 @@ describe("with-page-auth-required csr", () => {
250250
expect(window.location.assign).toHaveBeenCalled();
251251
});
252252
const url = new URL(
253-
(
254-
window.location.assign as MockedFunction<typeof window.location.assign>
255-
).mock.calls[0][0],
253+
(window.location.assign as MockedFunction<typeof window.location.assign>)
254+
.mock.calls[0][0],
256255
"https://example.com"
257256
);
258257
expect(url.searchParams.get("returnTo")).toEqual("/foo?bar=baz&qux=quux");

src/client/mfa/mfa-client.flow.test.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,8 @@ describe("ClientMfaClient", () => {
118118
});
119119

120120
it("should throw MfaGetAuthenticatorsError for network errors", async () => {
121-
const { MfaGetAuthenticatorsError } = await import(
122-
"../../errors/index.js"
123-
);
121+
const { MfaGetAuthenticatorsError } =
122+
await import("../../errors/index.js");
124123

125124
const encryptedToken = await encryptMfaToken(
126125
DEFAULT.mfaToken,
@@ -650,9 +649,8 @@ describe("ClientMfaClient", () => {
650649

651650
describe("getAuthenticators - query param validation", () => {
652651
it("should handle empty query param gracefully", async () => {
653-
const { MfaGetAuthenticatorsError } = await import(
654-
"../../errors/index.js"
655-
);
652+
const { MfaGetAuthenticatorsError } =
653+
await import("../../errors/index.js");
656654

657655
// Server should reject empty mfa_token
658656
server.use(

src/server/mfa-server.flow.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,9 +417,8 @@ describe("AuthClient MFA Methods", () => {
417417
});
418418

419419
it("should cache access token in session when cookies provided", async () => {
420-
const { RequestCookies, ResponseCookies } = await import(
421-
"@edge-runtime/cookies"
422-
);
420+
const { RequestCookies, ResponseCookies } =
421+
await import("@edge-runtime/cookies");
423422

424423
const session: SessionData = {
425424
user: { sub: DEFAULT.sub },

0 commit comments

Comments
 (0)