Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDK-1308] Return appState value on error from handleRedirectCallback #348

Merged
merged 4 commits into from
Feb 4, 2020
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Updated domain name in integration tests
Steve Hobbs committed Feb 4, 2020

Verified

This commit was signed with the committer’s verified signature.
Kikobeats Kiko Beats
commit b847cff81d26dd98d55c21189b17274bcd2d21b4
2 changes: 1 addition & 1 deletion cypress/integration/getTokenSilently.js
Original file line number Diff line number Diff line change
@@ -28,7 +28,7 @@ describe('getTokenSilently', function() {
);
return win.auth0.getTokenSilently().then(() => {
const parsedUrl = new URL(iframe.src);
shouldBe(parsedUrl.host, 'auth.brucke.club');
shouldBe(parsedUrl.host, 'brucke.auth0.com');
const pageParams = decode(parsedUrl.search.substr(1));
shouldBeUndefined(pageParams.code_verifier);
shouldNotBeUndefined(pageParams.code_challenge);
2 changes: 1 addition & 1 deletion cypress/integration/loginWithRedirect.js
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ describe('loginWithRedirect', function() {
cy.wait(2000);
cy.url().then(url => {
const parsedUrl = new URL(url);
shouldBe(parsedUrl.host, 'auth.brucke.club');
shouldBe(parsedUrl.host, 'brucke.auth0.com');
const pageParams = decode(parsedUrl.search.substr(1));
shouldBeUndefined(pageParams.code_verifier);
shouldNotBeUndefined(pageParams.code_challenge);