Skip to content

Commit

Permalink
fix remove save change code from checkbox block
Browse files Browse the repository at this point in the history
  • Loading branch information
ngunner15 committed Oct 22, 2024
1 parent 6f71d84 commit fd7b86d
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ describe('A Class Seedlot Registration form submission', () => {
.then($checkbox => {
if ($checkbox.is(':not(:checked)')) {
cy.get('#collection-step-default-checkbox').check({ force: true });
// Save changes
cy.saveSeedlotRegFormProgress();
}
})
.should("be.checked");
Expand Down Expand Up @@ -95,8 +93,6 @@ describe('A Class Seedlot Registration form submission', () => {
.then($checkbox => {
if ($checkbox.is(':not(:checked)')) {
cy.get('#default-owner-checkbox').check({ force: true });
// Save changes
cy.saveSeedlotRegFormProgress();
}
})
.should("be.checked");
Expand Down Expand Up @@ -137,8 +133,6 @@ describe('A Class Seedlot Registration form submission', () => {
.then($checkbox => {
if ($checkbox.is(':not(:checked)')) {
cy.get('#interim-use-collection-agency').check({ force: true });
// Save changes
cy.saveSeedlotRegFormProgress();
}
})
.should("be.checked");
Expand Down

0 comments on commit fd7b86d

Please sign in to comment.