itemengine-cypress-automation 1.0.312-fixes14thFeb-5d62c62.0 → 1.0.312-fixes14thFeb-291c392.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.
package/Dockerfile CHANGED
@@ -25,6 +25,16 @@ RUN chmod +x ./deploy/multipleSelectionQuestion/run.sh
25
25
  RUN chmod +x ./deploy/multipleSelectionGridQuestion/run.sh
26
26
  RUN chmod +x ./deploy/singleSelectionQuestion/run.sh
27
27
  RUN chmod +x ./deploy/singleSelectionGridQuestion/run.sh
28
+ RUN chmod +x ./deploy/textSelectionQuestion/run.sh
29
+ RUN chmod +x ./deploy/numberLineLabelQuestion/run.sh
30
+ RUN chmod +x ./deploy/numberLineQuestion/run.sh
31
+ RUN chmod +x ./deploy/matchingQuestion/run.sh
32
+ RUN chmod +x ./deploy/matchingDropdownQuestion/run.sh
33
+ RUN chmod +x ./deploy/listOrderingDropdownQuestion/run.sh
34
+ RUN chmod +x ./deploy/listOrderingQuestion/run.sh
35
+ RUN chmod +x ./deploy/listOrderingReorderQuestion/run.sh
36
+ RUN chmod +x ./deploy/essayResponseBasicQuestion/run.sh
37
+ RUN chmod +x ./deploy/essayResponseMathQuestion/run.sh
28
38
 
29
39
  RUN npm ci
30
40
 
@@ -8,5 +8,5 @@ module.exports = {
8
8
  // { width: 1024, height: 1366, name: 'safari' }
9
9
  ],
10
10
  //Configuration options: https://applitools.com/tutorials/sdks/cypress/configuration
11
- APPLITOOLS_IS_DISABLED: true
11
+ APPLITOOLS_IS_DISABLED: false
12
12
  };
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-essay-response-basic
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/essayResponseBasicQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running Essay Response basic question test"
6
+
7
+ npm run spinnaker:essayResponseBasic
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-essay-response-math
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 2
14
+ completions: 2
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/essayResponseMathQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running Essay Response math question test"
6
+
7
+ npm run spinnaker:essayResponseMath
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-list-ordering-dropdown
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/listOrderingDropdownQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running List ordering dropdown question test"
6
+
7
+ npm run spinnaker:listOrderingDropdown
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-list-ordering
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/listOrderingQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running List Ordering question test"
6
+
7
+ npm run spinnaker:listOrdering
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-list-ordering-reorder
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/listOrderingReorderQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running List ordering reorder question test"
6
+
7
+ npm run spinnaker:listOrderingReorder
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-matching-dropdown
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/matchingDropdownQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running Matching dropdown question test"
6
+
7
+ npm run spinnaker:matchingDropdown
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-matching
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/matchingQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running Matching question test"
6
+
7
+ npm run spinnaker:matching
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-number-line-label
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/numberLineLabelQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running Number line label question test"
6
+
7
+ npm run spinnaker:numberLineLabel
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-number-line
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/numberLineQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running Number line question test"
6
+
7
+ npm run spinnaker:numberLine
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-text-selection
4
+ type: integration_test
5
+
6
+ variables:
7
+ START_TIME: "$(date +%s)"
8
+
9
+ deployment:
10
+ job:
11
+ backoffLimit: 25
12
+ activeDeadlineSeconds: 7200
13
+ parallelism: 7
14
+ completions: 7
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/textSelectionQuestion/run.sh
18
+
19
+ resources:
20
+ limits:
21
+ memory: 8446Mi
22
+ cpu: 5000m
23
+ requests:
24
+ memory: 4096Mi
25
+ cpu: 2000m
26
+
27
+ env:
28
+ instance:
29
+ - name: START_TIME
30
+ value: "${{ variables.START_TIME }}"
@@ -0,0 +1,7 @@
1
+ #!/bin/sh
2
+ env=$STAGE
3
+ echo Environment to test: $env
4
+ echo START_TIME: $START_TIME
5
+ echo "Running Text selection question test"
6
+
7
+ npm run spinnaker:textSelection
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.312-fixes14thFeb-5d62c62.0",
3
+ "version": "1.0.312-fixes14thFeb-291c392.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -27,7 +27,17 @@
27
27
  "spinnaker:graphing": "node scripts/questions.mjs --env theme=ilc,questionType=Graphing,grepTags=-css+-a11y",
28
28
  "spinnaker:imageHighlight": "node scripts/questions.mjs --env theme=ilc,questionType=ImageHighlight,grepTags=-css+-a11y",
29
29
  "spinnaker:multipleSelectionGrid": "node scripts/questions.mjs --env theme=ilc,questionType=MultipleSelectionGridNew,grepTags=-css+-a11y",
30
- "spinnaker:singleSelectionGrid": "node scripts/questions.mjs --env theme=ilc,questionType=SingleSelectionGridNew,grepTags=-css+-a11y"
30
+ "spinnaker:singleSelectionGrid": "node scripts/questions.mjs --env theme=ilc,questionType=SingleSelectionGridNew,grepTags=-css+-a11y",
31
+ "spinnaker:textSelection": "node scripts/questions.mjs --env theme=ilc,questionType=TextSelection,grepTags=-css+-a11y",
32
+ "spinnaker:numberLineLabel": "node scripts/questions.mjs --env theme=ilc,questionType=NumberLineLabel,grepTags=-css+-a11y",
33
+ "spinnaker:numberLine": "node scripts/questions.mjs --env theme=ilc,questionType=NumberLine,grepTags=-css+-a11y",
34
+ "spinnaker:matching": "node scripts/questions.mjs --env theme=ilc,questionType=Matching,grepTags=-css+-a11y",
35
+ "spinnaker:matchingDropdown": "node scripts/questions.mjs --env theme=ilc,questionType=MatchingDropdown,grepTags=-css+-a11y",
36
+ "spinnaker:listOrderingDropdown": "node scripts/questions.mjs --env theme=ilc,questionType=ListOrderingDropdown,grepTags=-css+-a11y",
37
+ "spinnaker:listOrdering": "node scripts/questions.mjs --env theme=ilc,questionType=ListOrderingNew,grepTags=-css+-a11y",
38
+ "spinnaker:listOrderingReorder": "node scripts/questions.mjs --env theme=ilc,questionType=ListOrderingReorderAsASeperateList,grepTags=-css+-a11y",
39
+ "spinnaker:essayResponseBasic": "node scripts/questions.mjs --env theme=ilc,questionType=EssayResponseBasic,grepTags=-css+-a11y",
40
+ "spinnaker:essayResponseMath": "node scripts/questions.mjs --env theme=ilc,questionType=EssayResponseMath,grepTags=-css+-a11y"
31
41
  },
32
42
  "repository": {
33
43
  "type": "git",