itemengine-cypress-automation 1.0.324-updateBumpVersion-4da7a9c.0 → 1.0.324

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.
@@ -0,0 +1,30 @@
1
+ global:
2
+ team: itemengine
3
+ name: item-engine-data-api
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: 1
14
+ completions: 1
15
+
16
+ image:
17
+ cmd: /ie-e2e/deploy/dataApi/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 Data api integration test"
6
+
7
+ npm run spinnaker:dataApiTest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itemengine-cypress-automation",
3
- "version": "1.0.324-updateBumpVersion-4da7a9c.0",
3
+ "version": "1.0.324",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -29,7 +29,8 @@
29
29
  "spinnaker:fillInTheGaps": "node scripts/questions.mjs --env theme=ilc,questionType=FillInTheGapsTextNew_FillInTheGapsOverImageTextNew_FillInTheGapsDropdownNew_FillInTheGapsDragAndDropNew_FillInTheGapsOverImageDropdownNew_FillInTheGapsOverImageDragAndDrop,grepTags=-css+-a11y",
30
30
  "spinnaker:audioResponse": "node scripts/questions.mjs --env theme=ilc,questionType=AudioResponseNew_VideoResponseNew_UploadResponse_ToolAudioPlayerNew,grepTags=-css+-a11y",
31
31
  "spinnaker:feedbackScale": "node scripts/questions.mjs --env theme=ilc,questionType=FeedbackScaleNew_BrainingCampManipulative_EditItem_ToolSettings,grepTags=-css+-a11y",
32
- "spinnaker:resourcesAndTools": "node scripts/questions.mjs --env theme=ilc,questionType=Compass_ContentBlocks_Protractor_ReadingRuler_SimpleCalculator_Ruler,grepTags=-css+-a11y"
32
+ "spinnaker:resourcesAndTools": "node scripts/questions.mjs --env theme=ilc,questionType=Compass_ContentBlocks_Protractor_ReadingRuler_SimpleCalculator_Ruler,grepTags=-css+-a11y",
33
+ "spinnaker:dataApiTest": "node scripts/questions.mjs --env theme=ilc,questionType=DataApi,grepTags=-css+-a11y"
33
34
  },
34
35
  "repository": {
35
36
  "type": "git",
@@ -51,4 +52,4 @@
51
52
  "devDependencies": {
52
53
  "@applitools/eyes-cypress": "^3.47.0"
53
54
  }
54
- }
55
+ }