-
Notifications
You must be signed in to change notification settings - Fork 1
Added Multiple Certificcate Regression Test cases #1447
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
Open
bibhusahu91
wants to merge
1
commit into
master
Choose a base branch
from
stories/ecer-5312
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...CE5YearCertificationAddECEAsssitant.cy.ts → ...CE5YearCertificationAddECEAsssitant.cy.ts
This file contains hidden or 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
83 changes: 83 additions & 0 deletions
83
....client/cypress/e2e/ui/multipleCertificate/ActiveECE5YearCertificationAddECEOneYear.cy.ts
This file contains hidden or 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,83 @@ | ||
| import selectors from "../../../support/selectors"; | ||
| import { courseStartDay, courseEndDay } from "../../../support/utils"; | ||
|
|
||
| describe("Active ECE 5 Year Certificate Application and ADD One year ECE ", () => { | ||
| it("should sucessfully create an ECE ONE Multiple Certificate Application", () => { | ||
| cy.seedRenewalApplication("ECE5Years", true, false); | ||
|
|
||
| cy.reload(); | ||
| /** Dashboard */ | ||
| cy.get(selectors.dashboard.multiApplyButton).first().click(); | ||
|
|
||
| /** Application Requirements */ | ||
| cy.get(selectors.certificationType.applyNowEceOneYearButton).click(); | ||
| cy.get(selectors.applicationRequirements.applyNowButton).click(); | ||
|
|
||
| /** Declaration */ | ||
| cy.get(selectors.declaration.declarationCheckbox).check({ force: true }); | ||
| cy.get(selectors.declaration.continueButton).click(); | ||
|
|
||
| /** Contact Information */ | ||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Professional Development */ | ||
| cy.get(selectors.education.addEducationButton).click(); | ||
|
|
||
| cy.get(selectors.education.provinceDropDownList).should("exist").type("British Columbia"); | ||
|
|
||
| cy.get(selectors.education.postSecondaryInstitutionDropDownList).should("exist").type("Other"); | ||
| cy.get("body").click({ force: true }); | ||
|
|
||
| cy.get(selectors.education.institutionNameInput).type("TEST Educational Institution"); | ||
|
|
||
| cy.get(selectors.education.programNameInput).type("TEST ECE Assistant Course"); | ||
|
|
||
| /* Start Date - DatePicker*/ | ||
| cy.get(selectors.education.programStartDateInput).click({ force: true }); | ||
| cy.get(selectors.education.programStartDateInput).clear(); | ||
| cy.get(selectors.education.programStartDateInput).type(`${courseStartDay} {enter}`); | ||
|
|
||
| /* End Date - DatePicker*/ | ||
| cy.get(selectors.education.programEndDateInput).click({ force: true }); | ||
| cy.get(selectors.education.programEndDateInput).clear(); | ||
| cy.get(selectors.education.programEndDateInput).type(`${courseEndDay} {enter}`); | ||
|
|
||
| cy.get(selectors.education.studentIDInput).type("1234"); | ||
| cy.get(selectors.education.nameOnTranscriptRadioDiv).within(() => { | ||
| cy.get(selectors.elementType.radio).first().check({ force: true }); | ||
| }); | ||
|
|
||
| cy.get(selectors.education.transcriptStatusRadioDiv).within(() => { | ||
| cy.get(selectors.elementType.radio).first().check({ force: true }); | ||
| }); | ||
| cy.get(selectors.education.saveEducationButton).click(); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Character Reference */ | ||
| cy.get(selectors.characterReference.lastNameInput).type("Reference Last Name"); | ||
| cy.get(selectors.characterReference.firstNameInput).type("Reference First Name"); | ||
| cy.get(selectors.characterReference.emailInput).type("[email protected]"); | ||
| cy.get(selectors.characterReference.phoneNumberInput).type("1234567890"); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Application Review and Submit */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
| cy.contains("Review and submit").should("be.visible"); | ||
| cy.get(selectors.applicationPreview.certificationType).should("be.visible").should("contain.text", "ECE One Year"); | ||
| cy.get(selectors.applicationPreview.characterReferenceFirstName).should("be.visible").should("contain.text", "Reference First Name"); | ||
| cy.get(selectors.applicationPreview.characterReferenceLastName).should("be.visible").should("contain.text", "Reference Last Name"); | ||
| cy.get(selectors.applicationPreview.characterReferenceEmail).should("be.visible").should("contain.text", "[email protected]"); | ||
|
|
||
| cy.get(selectors.applicationPreview.educationCountry).should("be.visible").should("contain.text", "Canada"); | ||
|
|
||
| cy.get(selectors.applicationPreview.educationProvince).should("be.visible").should("contain.text", "British Columbia"); | ||
| cy.get(selectors.applicationWizard.submitApplicationButton).click(); | ||
|
|
||
| /** Application Submitted */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
| cy.get(selectors.applicationSubmitted.pageTitle).should("be.visible").should("contain.text", "Application Submitted"); | ||
| cy.get(selectors.applicationSubmitted.applicationSummaryButton).should("be.visible").should("contain.text", "Go to application summary"); | ||
| }); | ||
| }); |
16 changes: 16 additions & 0 deletions
16
...ient/cypress/e2e/ui/multipleCertificate/ActiveECE5YearCertificationactiveECEOneYear.cy.ts
This file contains hidden or 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,16 @@ | ||
| import selectors from "../../../support/selectors"; | ||
| import { courseStartDay, courseEndDay } from "../../../support/utils"; | ||
|
|
||
| describe("Active ECE 5 Year Certificate and Active ECE one Year but ECE 5 year is visible Application", () => { | ||
| it("Active 5 year ECE cetification should be visible", () => { | ||
| cy.seedRenewalApplication("ECE5Years", false, false); | ||
|
|
||
| cy.reload(); | ||
| /** Dashboard */ | ||
| cy.seedRenewalApplication("ECEOneYear", false, false); | ||
|
|
||
| cy.reload(); | ||
| cy.contains("Early Childhood Educator - ECE Five Year").should("be.visible"); | ||
| }); | ||
|
|
||
| }); |
104 changes: 104 additions & 0 deletions
104
...ient/cypress/e2e/ui/multipleCertificate/ActiveECEOneYearCertificationAddECEFiveYear.cy.ts
This file contains hidden or 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,104 @@ | ||
| import selectors from "../../../support/selectors"; | ||
| import { courseStartDay, courseEndDay, todayDay } from "../../../support/utils"; | ||
|
|
||
|
|
||
| describe("Active ECE One Year Certificate Application ADd 5 year Certificate", () => { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpik typo ADd -> Add |
||
| it("should create a sucessfull ECE Five Year Application", () => { | ||
| cy.seedRenewalApplication("ECEOneYear", true, false); | ||
|
|
||
| cy.reload(); | ||
| /** Dashboard */ | ||
| cy.get(selectors.dashboard.multiApplyButton).first().click(); | ||
| cy.get(selectors.certificationType.applyNowEceFiveYearButton).click(); | ||
|
|
||
|
|
||
| /** Application Requirements */ | ||
| cy.get(selectors.certificationType.iteCheckBox).uncheck({ force: true }); | ||
| cy.get(selectors.certificationType.sneCheckBox).uncheck({ force: true }); | ||
| cy.get(selectors.applicationRequirements.applyNowButton).click(); | ||
|
|
||
| /** Declaration */ | ||
| cy.get(selectors.declaration.declarationCheckbox).check({ force: true }); | ||
| cy.get(selectors.declaration.continueButton).click(); | ||
|
|
||
| /** Contact Information */ | ||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Education */ | ||
| cy.get(selectors.education.addEducationButton).click(); | ||
|
|
||
| cy.get(selectors.education.provinceDropDownList).should("exist").type("British Columbia"); | ||
|
|
||
| cy.get(selectors.education.postSecondaryInstitutionDropDownList).should("exist").type("Other"); | ||
| cy.get("body").click({ force: true }); | ||
|
|
||
| cy.get(selectors.education.institutionNameInput).type("TEST Educational Institution"); | ||
|
|
||
| cy.get(selectors.education.programNameInput).type("TEST ECE 5 Year Course"); | ||
|
|
||
| /* Start Date - DatePicker*/ | ||
| cy.get(selectors.education.programStartDateInput).click({ force: true }); | ||
| cy.get(selectors.education.programStartDateInput).clear(); | ||
| cy.get(selectors.education.programStartDateInput).type(`${courseStartDay} {enter}`); | ||
|
|
||
| /* End Date - DatePicker*/ | ||
| cy.get(selectors.education.programEndDateInput).click({ force: true }); | ||
| cy.get(selectors.education.programEndDateInput).clear(); | ||
| cy.get(selectors.education.programEndDateInput).type(`${courseEndDay} {enter}`); | ||
|
|
||
| cy.get(selectors.education.studentIDInput).type("1234"); | ||
| cy.get(selectors.education.nameOnTranscriptRadioDiv).within(() => { | ||
| cy.get(selectors.elementType.radio).first().check({ force: true }); | ||
| }); | ||
| cy.get(selectors.education.transcriptStatusRadioDiv).within(() => { | ||
| cy.get(selectors.elementType.radio).first().check({ force: true }); | ||
| }); | ||
| cy.get(selectors.education.saveEducationButton).click(); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Character Reference */ | ||
| cy.get(selectors.characterReference.lastNameInput).type("CharacterReferenceLastName"); | ||
| cy.get(selectors.characterReference.firstNameInput).type("CharacterReferenceFirstName"); | ||
| cy.get(selectors.characterReference.emailInput).type("[email protected]"); | ||
| cy.get(selectors.characterReference.phoneNumberInput).type("1234567890"); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Work Experience Reference */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
| cy.get(selectors.workExperienceReference.addReferenceButton).click(); | ||
|
|
||
| cy.get(selectors.workExperienceReference.lastNameInput).type("WorkReferenceLastName"); | ||
| cy.get(selectors.workExperienceReference.firstNameInput).type("WorkReferenceFirstName"); | ||
| cy.get(selectors.workExperienceReference.emailInput).type("[email protected]"); | ||
| cy.get(selectors.workExperienceReference.phoneNumberInput).type("1234567890"); | ||
| cy.get(selectors.workExperienceReference.hoursInput).type("500"); | ||
|
|
||
| cy.get(selectors.workExperienceReference.saveReferenceButton).click(); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Application Review and Submit */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
|
|
||
| cy.contains("Review and submit").should("be.visible"); | ||
| cy.get(selectors.applicationPreview.certificationType).should("be.visible").should("contain.text", "ECE Five Year"); | ||
| cy.get(selectors.applicationPreview.characterReferenceFirstName).should("be.visible").should("contain.text", "CharacterReferenceFirstName"); | ||
| cy.get(selectors.applicationPreview.characterReferenceLastName).should("be.visible").should("contain.text", "CharacterReferenceLastName"); | ||
| cy.get(selectors.applicationPreview.characterReferenceEmail).should("be.visible").should("contain.text", "[email protected]"); | ||
| cy.get(selectors.applicationPreview.educationCountry).should("be.visible").should("contain.text", "Canada"); | ||
| cy.get(selectors.applicationPreview.educationProvince).should("be.visible").should("contain.text", "British Columbia"); | ||
|
|
||
| cy.get(selectors.applicationPreview.workReferenceName).should("be.visible").should("contain.text", "WorkReferenceFirstName"); | ||
| cy.get(selectors.applicationPreview.workReferenceName).should("be.visible").should("contain.text", "WorkReferenceLastName"); | ||
| cy.get(selectors.applicationPreview.workReferenceEmail).should("be.visible").should("contain.text", "[email protected]"); | ||
|
|
||
| cy.get(selectors.applicationWizard.submitApplicationButton).click(); | ||
|
|
||
| /** Application Submitted */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
| cy.get(selectors.applicationSubmitted.pageTitle).should("be.visible").should("contain.text", "Application Submitted"); | ||
| cy.get(selectors.applicationSubmitted.applicationSummaryButton).should("be.visible").should("contain.text", "Go to application summary"); | ||
| }); | ||
| }); | ||
104 changes: 104 additions & 0 deletions
104
...e2e/ui/multipleCertificate/ActiveECEOneYearCertificationAddECEFiveYearPlusITEAndSNE.cy.ts
This file contains hidden or 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,104 @@ | ||
| import selectors from "../../../support/selectors"; | ||
| import { courseStartDay, courseEndDay, todayDay } from "../../../support/utils"; | ||
|
|
||
|
|
||
| describe("Active ECE One Year Certificate Application Add 5 year+SNE+ITE Certificaten", () => { | ||
| it("should create a sucessfull 5 year+SNE+ITE Application", () => { | ||
| cy.seedRenewalApplication("ECEOneYear", true, false); | ||
|
|
||
| cy.reload(); | ||
| /** Dashboard */ | ||
| cy.get(selectors.dashboard.multiApplyButton).first().click(); | ||
| cy.get(selectors.certificationType.applyNowEceFiveYearButton).click(); | ||
|
|
||
|
|
||
| /** Application Requirements */ | ||
| cy.get(selectors.certificationType.iteCheckBox).check({ force: true }); | ||
| cy.get(selectors.certificationType.sneCheckBox).check({ force: true }); | ||
| cy.get(selectors.applicationRequirements.applyNowButton).click(); | ||
|
|
||
| /** Declaration */ | ||
| cy.get(selectors.declaration.declarationCheckbox).check({ force: true }); | ||
| cy.get(selectors.declaration.continueButton).click(); | ||
|
|
||
| /** Contact Information */ | ||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Education */ | ||
| cy.get(selectors.education.addEducationButton).click(); | ||
|
|
||
| cy.get(selectors.education.provinceDropDownList).should("exist").type("British Columbia"); | ||
|
|
||
| cy.get(selectors.education.postSecondaryInstitutionDropDownList).should("exist").type("Other"); | ||
| cy.get("body").click({ force: true }); | ||
|
|
||
| cy.get(selectors.education.institutionNameInput).type("TEST Educational Institution"); | ||
|
|
||
| cy.get(selectors.education.programNameInput).type("TEST ECE 5 Year Course"); | ||
|
|
||
| /* Start Date - DatePicker*/ | ||
| cy.get(selectors.education.programStartDateInput).click({ force: true }); | ||
| cy.get(selectors.education.programStartDateInput).clear(); | ||
| cy.get(selectors.education.programStartDateInput).type(`${courseStartDay} {enter}`); | ||
|
|
||
| /* End Date - DatePicker*/ | ||
| cy.get(selectors.education.programEndDateInput).click({ force: true }); | ||
| cy.get(selectors.education.programEndDateInput).clear(); | ||
| cy.get(selectors.education.programEndDateInput).type(`${courseEndDay} {enter}`); | ||
|
|
||
| cy.get(selectors.education.studentIDInput).type("1234"); | ||
| cy.get(selectors.education.nameOnTranscriptRadioDiv).within(() => { | ||
| cy.get(selectors.elementType.radio).first().check({ force: true }); | ||
| }); | ||
| cy.get(selectors.education.transcriptStatusRadioDiv).within(() => { | ||
| cy.get(selectors.elementType.radio).first().check({ force: true }); | ||
| }); | ||
| cy.get(selectors.education.saveEducationButton).click(); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Character Reference */ | ||
| cy.get(selectors.characterReference.lastNameInput).type("CharacterReferenceLastName"); | ||
| cy.get(selectors.characterReference.firstNameInput).type("CharacterReferenceFirstName"); | ||
| cy.get(selectors.characterReference.emailInput).type("[email protected]"); | ||
| cy.get(selectors.characterReference.phoneNumberInput).type("1234567890"); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Work Experience Reference */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
| cy.get(selectors.workExperienceReference.addReferenceButton).click(); | ||
|
|
||
| cy.get(selectors.workExperienceReference.lastNameInput).type("WorkReferenceLastName"); | ||
| cy.get(selectors.workExperienceReference.firstNameInput).type("WorkReferenceFirstName"); | ||
| cy.get(selectors.workExperienceReference.emailInput).type("[email protected]"); | ||
| cy.get(selectors.workExperienceReference.phoneNumberInput).type("1234567890"); | ||
| cy.get(selectors.workExperienceReference.hoursInput).type("500"); | ||
|
|
||
| cy.get(selectors.workExperienceReference.saveReferenceButton).click(); | ||
|
|
||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| /** Application Review and Submit */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
|
|
||
| cy.contains("Review and submit").should("be.visible"); | ||
| cy.get(selectors.applicationPreview.certificationType).should("be.visible").should("contain.text", "ECE Five Year"); | ||
| cy.get(selectors.applicationPreview.characterReferenceFirstName).should("be.visible").should("contain.text", "CharacterReferenceFirstName"); | ||
| cy.get(selectors.applicationPreview.characterReferenceLastName).should("be.visible").should("contain.text", "CharacterReferenceLastName"); | ||
| cy.get(selectors.applicationPreview.characterReferenceEmail).should("be.visible").should("contain.text", "[email protected]"); | ||
| cy.get(selectors.applicationPreview.educationCountry).should("be.visible").should("contain.text", "Canada"); | ||
| cy.get(selectors.applicationPreview.educationProvince).should("be.visible").should("contain.text", "British Columbia"); | ||
|
|
||
| cy.get(selectors.applicationPreview.workReferenceName).should("be.visible").should("contain.text", "WorkReferenceFirstName"); | ||
| cy.get(selectors.applicationPreview.workReferenceName).should("be.visible").should("contain.text", "WorkReferenceLastName"); | ||
| cy.get(selectors.applicationPreview.workReferenceEmail).should("be.visible").should("contain.text", "[email protected]"); | ||
|
|
||
| cy.get(selectors.applicationWizard.submitApplicationButton).click(); | ||
|
|
||
| /** Application Submitted */ | ||
| cy.document().its("readyState").should("eq", "complete"); | ||
| cy.get(selectors.applicationSubmitted.pageTitle).should("be.visible").should("contain.text", "Application Submitted"); | ||
| cy.get(selectors.applicationSubmitted.applicationSummaryButton).should("be.visible").should("contain.text", "Go to application summary"); | ||
| }); | ||
| }); |
49 changes: 49 additions & 0 deletions
49
...t/cypress/e2e/ui/multipleCertificate/ActiveECEOneYearCertificationAddLabourMobility.cy.ts
This file contains hidden or 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,49 @@ | ||
| import selectors from "../../../support/selectors"; | ||
| import { courseStartDay, courseEndDay, todayDay } from "../../../support/utils"; | ||
| const provinceName = "Alberta"; | ||
| const certificationName = "Early Childhood Educator Level 1"; | ||
|
|
||
| describe(" Active ECE One Year Certificate Applicatio plus add labour Mobility", () => { | ||
| it("should create a sucessfull Labour mobility Application", () => { | ||
| cy.seedRenewalApplication("ECEOneYear", true, false); | ||
|
|
||
| cy.reload(); | ||
| /** Dashboard */ | ||
| cy.get(selectors.dashboard.multiApplyButton).eq(1).click(); | ||
|
|
||
| /** Transfer Eligibility */ | ||
| cy.contains("Check your transfer eligibility").should("be.visible"); | ||
|
|
||
| /** Alberta*/ | ||
| cy.get(selectors.transferEligibility.provinceDropDownList).should("exist").click({ force: true }); | ||
| cy.get(selectors.elementType.vListItem).contains(provinceName).click(); | ||
|
|
||
| /**Out of province Certification Type */ | ||
| cy.get(selectors.transferEligibility.certificationTypeDropDownList).should("exist").click({ force: true }); | ||
| cy.get(selectors.elementType.vListItem).contains(certificationName).click(); | ||
|
|
||
| cy.contains("You can apply to transfer your certification to ECE Assistant certification in B.C.").should("be.visible"); | ||
|
|
||
| /** View Requirements Button */ | ||
| cy.get(selectors.transferEligibility.viewRequirementsButton).click(); | ||
|
|
||
| /**Requirements */ | ||
| cy.contains("Transfer to ECE Assistant certification").should("be.visible"); | ||
| cy.get(selectors.applicationRequirements.applyNowButton).click(); | ||
|
|
||
| /** Declaration */ | ||
| cy.get(selectors.declaration.declarationCheckbox).check({ force: true }); | ||
| cy.get(selectors.declaration.continueButton).click(); | ||
|
|
||
| /** Certificate Information */ | ||
|
|
||
| cy.contains("Certificate information").should("be.visible"); | ||
| cy.contains("ECE Assistant").should("be.visible"); | ||
| cy.contains(provinceName).should("be.visible"); | ||
| cy.contains(certificationName).should("be.visible"); | ||
| cy.get(selectors.certificateInformation.nameOnCertificateRadio).first().check({ force: true }); | ||
| cy.get(selectors.applicationWizard.saveAndContinueButton).click(); | ||
|
|
||
| cy.ECEAssistantWorkflow(provinceName, certificationName); | ||
| }); | ||
| }); |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm a bit confused with this one... what does it do ? Just seems like it just reloads the screen? No other code from the file.