WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit f769f6b

Browse files
aeneasrory-bot
authored andcommitted
autogen(sdk): bump to 75ad7a5b7e4585b55145404ba1e487522b028886
GitOrigin-RevId: ccd3fd5274c449c634481cce0aeeb178269ccf24
1 parent f9de4cc commit f769f6b

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

test/e2e/playwright/fixtures/index.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,8 @@ export const test = base.extend<TestFixtures, WorkerFixtures>({
132132
})
133133
},
134134
identityWithoutPassword: async ({ request }, use, i) => {
135-
const { identity: oryIdentity, email } = await createIdentityWithEmail(
136-
request,
137-
)
135+
const { identity: oryIdentity, email } =
136+
await createIdentityWithEmail(request)
138137
i.attach("identity", {
139138
body: JSON.stringify(oryIdentity, null, 2),
140139
contentType: "application/json",

test/e2e/playwright/models/elements/login.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ export class LoginPage {
3838

3939
public alert: Locator
4040

41-
constructor(readonly page: Page, readonly config: OryKratosConfiguration) {
41+
constructor(
42+
readonly page: Page,
43+
readonly config: OryKratosConfiguration,
44+
) {
4245
this.identifier = createInputLocator(page, "identifier")
4346
this.password = createInputLocator(page, "password")
4447
this.totpInput = createInputLocator(page, "totp_code")

test/e2e/playwright/models/elements/settings.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ import { TOTP } from "otpauth"
66
import { OryKratosConfiguration } from "../../../shared/config"
77

88
export class SettingsPage {
9-
constructor(readonly page: Page, readonly config: OryKratosConfiguration) {}
9+
constructor(
10+
readonly page: Page,
11+
readonly config: OryKratosConfiguration,
12+
) {}
1013

1114
async isReady() {
1215
for (const csrfInput of await this.page

0 commit comments

Comments
 (0)