Skip to content

Commit

Permalink
Remove unused comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmontville committed Dec 9, 2023
1 parent 3e87a7b commit 6f1cdb0
Showing 1 changed file with 0 additions and 29 deletions.
29 changes: 0 additions & 29 deletions cypress/e2e/partner-admin/listOrgs.spec.cy.js
Original file line number Diff line number Diff line change
@@ -1,32 +1,3 @@
// const orgs = [
// {'tabName': 'Districts', 'orgName': Cypress.env('testPartnerDistrictName')},
// {'tabName': 'Schools', 'orgName': Cypress.env('testPartnerSchoolName')},
// {'tabName': 'Classes', 'orgName': Cypress.env('testPartnerClassName')},
// {'tabName': 'Groups', 'orgName': Cypress.env('testPartnerGroupName')}
// ]
//
// function checkOrgsExists(orgs) {
// for (let org of orgs) {
// cy.get('ul > li', {timeout: Cypress.env('timeout')})
// .contains(org.tabName).click()
// cy.log("Tab " + org.tabName + " found.")
//
// cy.get('div', {timeout: Cypress.env('timeout')})
// .should('contain.text', org.orgName, {timeout: Cypress.env('timeout')})
// cy.log(`${org.orgName} exists.`)
// }
// }
//
// describe('The partner admin user can navigate to the list organizations page, ' +
// 'and can see which they organizations they are associated with', () => {
// it('Activates the admin sidebar, clicks List Orgs, then clicks through the various tabs.', () => {
//
// cy.login(Cypress.env('partnerAdminUsername'), Cypress.env('partnerAdminPassword'))
// cy.navigateTo('/list-orgs')
// checkOrgsExists(orgs)
// })
// })

const orgs = [
{ tabName: 'Districts', orgName: Cypress.env('testPartnerDistrictName') },
{ tabName: 'Schools', orgName: Cypress.env('testPartnerSchoolName') },
Expand Down

0 comments on commit 6f1cdb0

Please sign in to comment.