Skip to content

Commit bad43a8

Browse files
committed
chore: format
1 parent 9391d68 commit bad43a8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package-lock.json

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/e2e/cypress/integration/profiles/oidc-provider/login.spec.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ context("OpenID Provider", () => {
1414
auth_endpoint: "http://localhost:4744/oauth2/auth",
1515
token_endpoint: "http://localhost:4744/oauth2/token",
1616
id: Cypress.env("OIDC_DUMMY_CLIENT_ID"),
17-
secret: Cypress.env("OIDC_DUMMY_CLIENT_SECRET"),
17+
secret: Cypress.env("OIDC_DUMMY_CLIENT_SECRET"),
1818
token_endpoint_auth_method: "client_secret_basic",
1919
grant_types: ["authorization_code", "refresh_token"],
2020
response_types: ["code", "id_token"],
@@ -129,7 +129,6 @@ context("OpenID Provider", () => {
129129
console.log(cy.getCookies())
130130
cy.getCookie("ory_hydra_session_dev").should("not.be.null")
131131
cy.getCookie("ory_hydra_session_dev").then((cookie) => {
132-
console.log('got', {cookie})
133132
let expected = Date.now() / 1000 + 1234
134133
let precision = 10
135134
expect(cookie.expiry).to.be.lessThan(expected + precision)

test/e2e/cypress/integration/profiles/oidc-provider/mfa.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ context("OIDC Provider 2FA", () => {
1212
auth_endpoint: "http://localhost:4744/oauth2/auth",
1313
token_endpoint: "http://localhost:4744/oauth2/token",
1414
id: Cypress.env("OIDC_DUMMY_CLIENT_ID"),
15-
secret: Cypress.env("OIDC_DUMMY_CLIENT_SECRET"),
15+
secret: Cypress.env("OIDC_DUMMY_CLIENT_SECRET"),
1616
token_endpoint_auth_method: "client_secret_basic",
1717
grant_types: ["authorization_code", "refresh_token"],
1818
response_types: ["code", "id_token"],

test/e2e/cypress/integration/profiles/oidc-provider/registration.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ context("OpenID Provider", () => {
1515
auth_endpoint: "http://localhost:4744/oauth2/auth",
1616
token_endpoint: "http://localhost:4744/oauth2/token",
1717
id: Cypress.env("OIDC_DUMMY_CLIENT_ID"),
18-
secret: Cypress.env("OIDC_DUMMY_CLIENT_SECRET"),
18+
secret: Cypress.env("OIDC_DUMMY_CLIENT_SECRET"),
1919
token_endpoint_auth_method: "client_secret_basic",
2020
grant_types: ["authorization_code", "refresh_token"],
2121
response_types: ["code", "id_token"],

0 commit comments

Comments
 (0)