itemengine-cypress-automation 1.0.313 → 1.0.314

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
@@ -16,6 +16,7 @@ RUN chmod +x ./deploy/e2e/run.sh
16
16
  RUN chmod +x ./deploy/smoke/run.sh
17
17
  RUN chmod +x ./deploy/migration/run.sh
18
18
  RUN chmod +x ./deploy/essayQuestion/run.sh
19
+ RUN chmod +x ./deploy/thinkSphere/run.sh
19
20
  RUN chmod +x ./deploy/textEntryMathQuestion/run.sh
20
21
  RUN chmod +x ./deploy/textEntryMathImageQuestion/run.sh
21
22
  RUN chmod +x ./deploy/DNDIntoCategoriesQuestion/run.sh
@@ -0,0 +1,17 @@
1
+ import { rulerPage } from "../../../pages";
2
+ import abortEarlySetup from "../../../support/helpers/abortEarly";
3
+
4
+ describe('Dummy test for setting up pipeline Create question page - Ruler resource type', () => {
5
+ before(() => {
6
+ cy.loginAs('admin');
7
+ });
8
+
9
+ describe('Header section contents', () => {
10
+ abortEarlySetup();
11
+ before(() => {
12
+ rulerPage.steps.navigateToCreateResource('ruler');
13
+ });
14
+
15
+ rulerPage.tests.verifyCreateQuestionPageQuestionTypeHeader('Ruler');
16
+ });
17
+ });
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-ui-think-sphere
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/thinkSphere/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 ThinkSphere question test"
6
+
7
+ npm run spinnaker:thinkSphereQuestion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.313",
3
+ "version": "1.0.314",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -19,6 +19,7 @@
19
19
  "cy:ilqa": "cypress open --env fileConfig=ilqa",
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
+ "spinnaker:thinkSphereQuestion": "node scripts/questions.mjs --env theme=ilc,questionType=ThinkSphere,grepTags=-css+-a11y",
22
23
  "spinnaker:textEntryMath": "node scripts/questions.mjs --env theme=ilc,questionType=TextEntryMath,grepTags=-css+-a11y",
23
24
  "spinnaker:textEntryMathImage": "node scripts/questions.mjs --env theme=ilc,questionType=TextEntryMathWithImage,grepTags=-css+-a11y",
24
25
  "spinnaker:DNDIntoCategories": "node scripts/questions.mjs --env theme=ilc,questionType=DragAndDropIntoCategoriesNew,grepTags=-css+-a11y",