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 +10 -0
- package/cypress/e2e/applitools.config.js +1 -1
- package/deploy/essayResponseBasicQuestion/deploy.yaml +30 -0
- package/deploy/essayResponseBasicQuestion/run.sh +7 -0
- package/deploy/essayResponseMathQuestion/deploy.yaml +30 -0
- package/deploy/essayResponseMathQuestion/run.sh +7 -0
- package/deploy/listOrderingDropdownQuestion/deploy.yaml +30 -0
- package/deploy/listOrderingDropdownQuestion/run.sh +7 -0
- package/deploy/listOrderingQuestion/deploy.yaml +30 -0
- package/deploy/listOrderingQuestion/run.sh +7 -0
- package/deploy/listOrderingReorderQuestion/deploy.yaml +30 -0
- package/deploy/listOrderingReorderQuestion/run.sh +7 -0
- package/deploy/matchingDropdownQuestion/deploy.yaml +30 -0
- package/deploy/matchingDropdownQuestion/run.sh +7 -0
- package/deploy/matchingQuestion/deploy.yaml +30 -0
- package/deploy/matchingQuestion/run.sh +7 -0
- package/deploy/numberLineLabelQuestion/deploy.yaml +30 -0
- package/deploy/numberLineLabelQuestion/run.sh +7 -0
- package/deploy/numberLineQuestion/deploy.yaml +30 -0
- package/deploy/numberLineQuestion/run.sh +7 -0
- package/deploy/textSelectionQuestion/deploy.yaml +30 -0
- package/deploy/textSelectionQuestion/run.sh +7 -0
- package/package.json +12 -2
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
|
|
@@ -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,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,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,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,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,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,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,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,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,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 }}"
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "itemengine-cypress-automation",
|
3
|
-
"version": "1.0.312-fixes14thFeb-
|
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",
|