-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge cherry-picked 'develop' into staging
- Loading branch information
Showing
59 changed files
with
4,812 additions
and
4,368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
script: | | ||
const thankyouNote = 'We truly appreciate your efforts. Thank you for taking the time to contribute; this is a very valuable contribution to us :1st_place_medal:. We always welcome your contribution :slightly_smiling_face:, so feel free to contribute to anything anytime, and never lose that spirit of innovation :raised_hands:.' | ||
const thankyouNote = 'Your efforts have helped advance digital healthcare and TeleICU systems. :rocket: Thank you for taking the time out to make CARE better. We hope you continue to innovate and contribute; your impact is immense! :raised_hands:' | ||
const options = { | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { cy, describe, it, beforeEach, Cypress } from "local-cypress"; | ||
import LoginPage from "../../pageobject/Login/LoginPage"; | ||
|
||
describe("redirect", () => { | ||
const loginPage = new LoginPage(); | ||
|
||
beforeEach(() => { | ||
cy.log("Logging in the user devdistrictadmin"); | ||
}); | ||
|
||
it("Check if login redirects to the right url", () => { | ||
cy.awaitUrl("/resource/board", true); | ||
loginPage.loginManuallyAsDistrictAdmin(); | ||
loginPage.ensureLoggedIn(); | ||
cy.url().should("include", "/resource/board"); | ||
}); | ||
|
||
it("Check if the redirect param works", () => { | ||
const baseUrl = Cypress.config("baseUrl"); | ||
cy.awaitUrl(`login?redirect=${baseUrl}/resource/board`, true); | ||
loginPage.loginManuallyAsDistrictAdmin(); | ||
loginPage.ensureLoggedIn(); | ||
cy.url().should("include", "/resource/board"); | ||
}); | ||
|
||
it("Check to ensure that redirect is the same origin", () => { | ||
cy.awaitUrl("login?redirect=https://google.com", true); | ||
loginPage.loginManuallyAsDistrictAdmin(); | ||
loginPage.ensureLoggedIn(); | ||
cy.url().should("include", "/facility"); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.