itemengine-cypress-automation 1.0.587-IEI-7219-d55c91d.0 → 1.0.589-IEI-7249-Add-cypress-test-to-over-reported-cases-c28b4d6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -701,7 +701,9 @@ describe('Create item page - Text entry math: All or nothing scoring', () => {
701
701
  textEntryMathPage.steps.verifyCorrectIncorrectAnswerLabel('correct');
702
702
  });
703
703
 
704
- it('When the user attempts the question using parenthesis in simplified format then it should be treated as incorrect', () => {
704
+ //remove skip once https://weldnorthed.atlassian.net/browse/IEI-7246 is resolved
705
+ it.skip('When the user attempts the question using parenthesis in unsimplified format then it should be treated as incorrect', () => {
706
+ textEntryMathPage.steps.resetQuestionPreview();
705
707
  textEntryMathPage.steps.focusInResponseAnswerInputFieldPreviewTab(0);
706
708
  equationEditorFlyout.steps.enterTextInPreviewInputField('(x+3)(y-2)');
707
709
  equationEditorFlyout.steps.clickOnOkButton();
@@ -710,6 +712,17 @@ describe('Create item page - Text entry math: All or nothing scoring', () => {
710
712
  textEntryMathPage.steps.verifyCorrectIncorrectAnswerLabel('incorrect');
711
713
  });
712
714
 
715
+ //remove skip once https://weldnorthed.atlassian.net/browse/IEI-7246 is resolved
716
+ it.skip('When the user attempts the question using parenthesis in unsimplified format with negative sign then it should be treated as incorrect', () => {
717
+ textEntryMathPage.steps.resetQuestionPreview();
718
+ textEntryMathPage.steps.focusInResponseAnswerInputFieldPreviewTab(0);
719
+ equationEditorFlyout.steps.enterTextInPreviewInputField('-7(-x-9)');
720
+ equationEditorFlyout.steps.clickOnOkButton();
721
+ textEntryMathPage.steps.switchToGradingView();
722
+ textEntryMathPage.steps.verifyIncorrectResponseIcon(0);
723
+ textEntryMathPage.steps.verifyCorrectIncorrectAnswerLabel('incorrect');
724
+ });
725
+
713
726
  it('When the user attempts the question using identity matrix then it should be treated as correct', () => {
714
727
  textEntryMathPage.steps.resetQuestionPreview();
715
728
  textEntryMathPage.steps.focusInResponseAnswerInputFieldPreviewTab(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.587-IEI-7219-d55c91d.0",
3
+ "version": "1.0.589-IEI-7249-Add-cypress-test-to-over-reported-cases-c28b4d6.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {