itemengine-cypress-automation 1.0.429-fixTheSetCiBuildFunctionToIncludeQuestionNames-b9167e9.0 → 1.0.430-revertChangesForBuildIdFunction-e14f507.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/package.json +1 -1
- package/scripts/sorry-cypress.mjs +3 -60
package/package.json
CHANGED
|
@@ -32,76 +32,19 @@ const env = process.env.STAGE ? process.env.STAGE : envArgs.fileConfig;
|
|
|
32
32
|
function setCiBuildId(user, startTime) {
|
|
33
33
|
let tags;
|
|
34
34
|
let testType = '[Regression]';
|
|
35
|
-
let questionTypeInfo = '';
|
|
36
|
-
|
|
37
|
-
// Map specific script commands to display names
|
|
38
|
-
const questionTypeDisplayNames = {
|
|
39
|
-
'essayResponse': 'Constructed response',
|
|
40
|
-
'thinkSphereQuestion': 'ThinkSphere',
|
|
41
|
-
'textEntryMath': 'Math response',
|
|
42
|
-
'DNDIntoCategories': 'Drag and drop',
|
|
43
|
-
'multipleSelection': 'Multiple choice selection',
|
|
44
|
-
'graphing': 'Graph and chart',
|
|
45
|
-
'imageHighlight': 'Highlight',
|
|
46
|
-
'listOrdering': 'List',
|
|
47
|
-
'fillInTheGaps': 'Fill in the gaps'
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
// Method 1: Try npm script detection (works locally)
|
|
51
|
-
const npmScript = process.env.npm_lifecycle_event;
|
|
52
|
-
let commandName = null;
|
|
53
|
-
|
|
54
|
-
if (npmScript && npmScript.startsWith('spinnaker:')) {
|
|
55
|
-
commandName = npmScript.replace('spinnaker:', '');
|
|
56
|
-
} else if (envArgs.questionType) {
|
|
57
|
-
// Method 2: Detect from questionType patterns (works in CI)
|
|
58
|
-
const questionTypePatterns = {
|
|
59
|
-
'EssayResponse': 'essayResponse',
|
|
60
|
-
'ThinkSphere': 'thinkSphereQuestion',
|
|
61
|
-
'TextEntryMath': 'textEntryMath',
|
|
62
|
-
'DragAndDropIntoCategoriesNew': 'DNDIntoCategories',
|
|
63
|
-
'MultipleSelection': 'multipleSelection',
|
|
64
|
-
'Graphing': 'graphing',
|
|
65
|
-
'ChartsBar': 'graphing',
|
|
66
|
-
'ChartsLine': 'graphing',
|
|
67
|
-
'ChartsDotsPlot': 'graphing',
|
|
68
|
-
'ImageHighlight': 'imageHighlight',
|
|
69
|
-
'GridFill': 'imageHighlight',
|
|
70
|
-
'TextSelection': 'imageHighlight',
|
|
71
|
-
'ListOrderingNew': 'listOrdering',
|
|
72
|
-
'Matching': 'listOrdering',
|
|
73
|
-
'FillInTheGapsTextNew': 'fillInTheGaps',
|
|
74
|
-
'FillInTheGapsDropdownNew': 'fillInTheGaps',
|
|
75
|
-
'FillInTheGapsDragAndDropNew': 'fillInTheGaps'
|
|
76
|
-
};
|
|
77
|
-
|
|
78
|
-
// Find matching pattern in questionType
|
|
79
|
-
const questionTypes = envArgs.questionType.split('_');
|
|
80
|
-
for (const questionType of questionTypes) {
|
|
81
|
-
if (questionTypePatterns[questionType]) {
|
|
82
|
-
commandName = questionTypePatterns[questionType];
|
|
83
|
-
break; // Use first match
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
// Apply display name if found
|
|
89
|
-
if (commandName && questionTypeDisplayNames[commandName]) {
|
|
90
|
-
questionTypeInfo = `[${questionTypeDisplayNames[commandName]}]`;
|
|
91
|
-
}
|
|
92
35
|
|
|
93
36
|
if (envArgs.grepUntagged) {
|
|
94
37
|
tags = 'untagged';
|
|
95
38
|
} else if (envArgs.grepTags) {
|
|
96
39
|
tags = envArgs.grepTags;
|
|
97
|
-
if (tags === 'smoke') {
|
|
40
|
+
if (tags.toLowerCase() === 'smoke') {
|
|
98
41
|
testType = '[E2E]';
|
|
99
42
|
}
|
|
100
43
|
} else {
|
|
101
44
|
tags = '--';
|
|
102
45
|
}
|
|
103
|
-
|
|
104
|
-
return `${user}${testType}
|
|
46
|
+
|
|
47
|
+
return `${user}${testType}[env:${env}][tags:${tags}][${startTime}]`
|
|
105
48
|
}
|
|
106
49
|
|
|
107
50
|
function setCommandLineEnvArgs() {
|