Skip to content

Commit

Permalink
Resolve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ketphan02 committed Apr 2, 2024
1 parent 9f1844e commit 7d6d6ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cypress/e2e/app/submission-box/detail/requestedDetail.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('Requested Dashboard Details Page Tests', () => {
cy.url({ timeout: TIMEOUT.EXTRA_LONG }).should('not.contain', 'login')
})

it.skip('should display a submission box with no information inputted other than title and no video', () => {
it('should display a submission box with no information inputted other than title and no video', () => {
const submissionBoxTitle = 'Test Requested'

cy.task('getUserId', email).then((userId) => {
Expand Down Expand Up @@ -47,7 +47,7 @@ describe('Requested Dashboard Details Page Tests', () => {
})


it.skip('should display a submission box with all information inputted and current submitted video', () => {
it('should display a submission box with all information inputted and current submitted video', () => {
const submissionBoxTitle = 'Test Requested with Data'
const submissionBoxDescription =
'This is a description that describes what users need to submit and have in their videos. The description is a good tool to make sure that participants in the submission box are able to determine what is needed in their submissions and the ability for them to hit their goals. :)'
Expand Down Expand Up @@ -105,7 +105,7 @@ describe('Requested Dashboard Details Page Tests', () => {
})


it.skip('should direct users to the video submission page when the submission button is clicked', () => {
it('should direct users to the video submission page when the submission button is clicked', () => {
const submissionBoxTitle = 'Test Requested with Data'
const submissionBoxDescription =
'This is a description that describes what users need to submit and have in their videos. The description is a good tool to make sure that participants in the submission box are able to determine what is needed in their submissions and the ability for them to hit their goals. :)'
Expand Down Expand Up @@ -138,7 +138,7 @@ describe('Requested Dashboard Details Page Tests', () => {
})
})

it.skip('should allow user to select existing video', ()=> {
it('should allow user to select existing video', ()=> {
const submissionBoxTitle = 'very exciting submission box'
const videoTitle = 'Such video'

Expand Down Expand Up @@ -182,7 +182,7 @@ describe('Requested Dashboard Details Page Tests', () => {
})
})

it.skip('should allow user to unsubmit a video', () => {
it('should allow user to unsubmit a video', () => {
const submissionBoxTitle = 'very exciting submission box'
const videoTitle = 'Such video'

Expand Down Expand Up @@ -212,7 +212,7 @@ describe('Requested Dashboard Details Page Tests', () => {
cy.get('[data-cy="select-video-for-submission"]').should('be.visible')
})

it.skip('shouldn\'t allow user to submit a video if the submission box is closed', () => {
it('shouldn\'t allow user to submit a video if the submission box is closed', () => {
const submissionBoxTitle = 'very exciting submission box'

cy.task('getUserId', email).then((userId) => {
Expand Down

0 comments on commit 7d6d6ae

Please sign in to comment.