itemengine-cypress-automation 1.0.304-spinnaker-pipelines-355167a.0 → 1.0.305-spinnaker-pipelines-45819fb.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 +7 -0
- package/deploy/DNDIntoCategoriesQuestion/deploy.yaml +30 -0
- package/deploy/DNDIntoCategoriesQuestion/run.sh +7 -0
- package/deploy/TextEntryMathImageQuestion/run.sh +1 -1
- package/deploy/graphingQuestion/deploy.yaml +30 -0
- package/deploy/graphingQuestion/run.sh +7 -0
- package/deploy/imageHighlightQuestion/deploy.yaml +30 -0
- package/deploy/imageHighlightQuestion/run.sh +7 -0
- package/deploy/multipleSelectionGridQuestion/deploy.yaml +30 -0
- package/deploy/multipleSelectionGridQuestion/run.sh +7 -0
- package/deploy/multipleSelectionQuestion/deploy.yaml +30 -0
- package/deploy/multipleSelectionQuestion/run.sh +7 -0
- package/deploy/singleSelectionGridQuestion/deploy.yaml +30 -0
- package/deploy/singleSelectionGridQuestion/run.sh +7 -0
- package/deploy/singleSelectionQuestion/deploy.yaml +30 -0
- package/deploy/singleSelectionQuestion/run.sh +7 -0
- package/deploy/textEntryMathQuestion/run.sh +1 -1
- package/package.json +9 -2
package/Dockerfile
CHANGED
@@ -18,6 +18,13 @@ RUN chmod +x ./deploy/migration/run.sh
|
|
18
18
|
RUN chmod +x ./deploy/essayQuestion/run.sh
|
19
19
|
RUN chmod +x ./deploy/textEntryMathQuestion/run.sh
|
20
20
|
RUN chmod +x ./deploy/textEntryMathImageQuestion/run.sh
|
21
|
+
RUN chmod +x ./deploy/DNDIntoCategoriesQuestion/run.sh
|
22
|
+
RUN chmod +x ./deploy/graphingQuestion/run.sh
|
23
|
+
RUN chmod +x ./deploy/imageHighlightQuestion/run.sh
|
24
|
+
RUN chmod +x ./deploy/multipleSelection/run.sh
|
25
|
+
RUN chmod +x ./deploy/multipleSelectionGrid/run.sh
|
26
|
+
RUN chmod +x ./deploy/singleSelection/run.sh
|
27
|
+
RUN chmod +x ./deploy/singleSelectionGrid/run.sh
|
21
28
|
|
22
29
|
RUN npm ci
|
23
30
|
|
@@ -0,0 +1,30 @@
|
|
1
|
+
global:
|
2
|
+
team: itemengine
|
3
|
+
name: item-engine-ui-dnd-categories
|
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/DNDIntoCategoriesQuestion/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-graphing
|
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/graphingQuestion/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-image-highlight
|
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/imageHighlightQuestion/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-multiple-selection-grid
|
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/multipleSelectionGridQuestion/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-multiple-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/multipleSelectionQuestion/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-single-selection-grid
|
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/singleSelectionGridQuestion/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-single-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/singleSelectionQuestion/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.
|
3
|
+
"version": "1.0.305-spinnaker-pipelines-45819fb.0",
|
4
4
|
"description": "",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
@@ -20,7 +20,14 @@
|
|
20
20
|
"cy:ilstage": "cypress open --env fileConfig=ilstage",
|
21
21
|
"spinnaker:essayResponse": "node scripts/questions.mjs --env theme=ilc,questionType=EssayResponse,grepTags=-css+-a11y",
|
22
22
|
"spinnaker:textEntryMath": "node scripts/questions.mjs --env theme=ilc,questionType=TextEntryMath,grepTags=-css+-a11y",
|
23
|
-
"spinnaker:textEntryMathImage": "node scripts/questions.mjs --env theme=ilc,questionType=
|
23
|
+
"spinnaker:textEntryMathImage": "node scripts/questions.mjs --env theme=ilc,questionType=TextEntryMathWithImage,grepTags=-css+-a11y",
|
24
|
+
"spinnaker:DNDIntoCategories": "node scripts/questions.mjs --env theme=ilc,questionType=DragAndDropIntoCategoriesNew,grepTags=-css+-a11y",
|
25
|
+
"spinnaker:multipleSelection": "node scripts/questions.mjs --env theme=ilc,questionType=MultipleSelection,grepTags=-css+-a11y",
|
26
|
+
"spinnaker:singleSelection": "node scripts/questions.mjs --env theme=ilc,questionType=SingleSelection,grepTags=-css+-a11y",
|
27
|
+
"spinnaker:graphing": "node scripts/questions.mjs --env theme=ilc,questionType=Graphing,grepTags=-css+-a11y",
|
28
|
+
"spinnaker:imageHighlight": "node scripts/questions.mjs --env theme=ilc,questionType=ImageHighlight,grepTags=-css+-a11y",
|
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"
|
24
31
|
},
|
25
32
|
"repository": {
|
26
33
|
"type": "git",
|