Skip to content

Commit de741b3

Browse files
committed
fix not sure lang
1 parent a6d6b85 commit de741b3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

web-app/cypress/e2e/addFeedForm.cy.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ describe('Add Feed Form', () => {
3737
cy.get('li').then($lis => {
3838
const texts = $lis.map((i, el) => el.textContent).get();
3939
cy.log('Dropdown options:', texts.join(', '));
40-
expect(texts).to.include('Unsure');
40+
expect(texts).to.include('Not sure');
4141
});
42-
cy.contains('li', 'Unsure').click();
42+
cy.contains('li', 'Not sure').click();
4343
}
4444
});
4545
cy.get('[data-cy=thirdStepSubmit]').click();
@@ -104,9 +104,9 @@ describe('Add Feed Form', () => {
104104
cy.get('li').then($lis => {
105105
const texts = $lis.map((i, el) => el.textContent).get();
106106
cy.log('Dropdown options:', texts.join(', '));
107-
expect(texts).to.include('Unsure');
107+
expect(texts).to.include('Not sure');
108108
});
109-
cy.contains('li', 'Unsure').click();
109+
cy.contains('li', 'Not sure').click();
110110
}
111111
});
112112
cy.get('[data-cy=thirdStepSubmit]').click();
@@ -169,9 +169,9 @@ describe('Add Feed Form', () => {
169169
const texts = $lis.map((i, el) => el.textContent).get();
170170
// Debug output
171171
cy.log('Dropdown options:', texts.join(', '));
172-
expect(texts).to.include('Unsure');
172+
expect(texts).to.include('Not sure');
173173
});
174-
cy.contains('li', 'Unsure').click();
174+
cy.contains('li', 'Not sure').click();
175175
cy.get('[data-cy="thirdStepSubmit"]').click();
176176
cy.url().should('include', '/contribute?step=4');
177177
});

0 commit comments

Comments
 (0)