Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
532efad
Bump @auth0/auth0-spa-js from 2.1.3 to 2.2.0
dependabot[bot] Jul 9, 2025
780e027
fix: update selectors in login function for Auth0 input fields
gyaneshgouraw-okta Jul 10, 2025
657adb1
Merge branch 'main' into fix/cypress
gyaneshgouraw-okta Jul 10, 2025
c9d628b
fix: correct environment variable names for Cypress user credentials
gyaneshgouraw-okta Jul 10, 2025
e6657d8
ci: add debug step and cypress env config for integration tests
gyaneshgouraw-okta Jul 10, 2025
e9df08f
chore: add Cypress validation to integration workflow
gyaneshgouraw-okta Jul 10, 2025
bd249f0
chore: remove logic from cypress environment config file
gyaneshgouraw-okta Jul 10, 2025
1e53581
chore: add Cypress test credentials for CRA integration tests
gyaneshgouraw-okta Jul 10, 2025
3b18a40
fix: update variable names for Cypress user credentials in integratio…
developerkunal Jul 10, 2025
bc1745c
Upload artifacts
developerkunal Jul 10, 2025
e778caf
fix
developerkunal Jul 10, 2025
2209ed7
remove extra pipeline code
developerkunal Jul 10, 2025
2c8addc
fix: standardize variable names for user credentials in smoke tests
gyaneshgouraw-okta Jul 11, 2025
9e1abdb
fix: add ref specification for checkout step in integration workflow
gyaneshgouraw-okta Jul 11, 2025
1845b43
fix: comment out NextJS and Gatsby integration tests due to dependenc…
gyaneshgouraw-okta Jul 14, 2025
f3a6d68
chore: enable NextJS integration tests
gyaneshgouraw-okta Jul 14, 2025
9c3eca9
chore: update nextjs test command and add cypress env config for test…
gyaneshgouraw-okta Jul 14, 2025
116527f
chore: add cypress debug logging for test runs
gyaneshgouraw-okta Jul 14, 2025
e307d92
chore: update cypress config with test user credentials and debug set…
gyaneshgouraw-okta Jul 14, 2025
d10acc3
chore: restore Gatsby integration test in CI workflow and fix NextJS …
gyaneshgouraw-okta Jul 17, 2025
47caa32
test: update logout test to use async act
gyaneshgouraw-okta Jul 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion __tests__/auth-provider.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ describe('Auth0Provider', () => {
await waitFor(() => {
expect(result.current.logout).toBeInstanceOf(Function);
});
act(() => {
await act(() => {
result.current.logout();
});
expect(clientMock.logout).toHaveBeenCalled();
Expand Down
6 changes: 3 additions & 3 deletions cypress/e2e/smoke.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ if (!EMAIL || !PASSWORD) {
}

const loginToAuth0 = (): void => {
cy.get('.auth0-lock-input-username .auth0-lock-input').clear().type(EMAIL);
cy.get('.auth0-lock-input-password .auth0-lock-input').clear().type(PASSWORD);
cy.get('.auth0-lock-submit').click();
cy.get('#username').clear().type(EMAIL);
cy.get('#password').clear().type(PASSWORD);
cy.get('button[type="submit"][name="action"]').contains(/^continue$/i).click({ force: true });
};

describe('Smoke tests', () => {
Expand Down
4 changes: 3 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading