Commit dfe272e 1 parent c0bbe24 commit dfe272e Copy full SHA for dfe272e
File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 16
16
"test" : " npm run test --workspaces" ,
17
17
"test:system" : " npm run test:system --workspaces" ,
18
18
"test:unit" : " npm run test:unit --workspaces" ,
19
+ "test:e2e" : " npm run test:e2e --workspaces" ,
19
20
"lint" : " npm run lint --workspaces" ,
20
21
"lintErrors" : " npm run lintErrors --workspaces" ,
21
22
"prepare" : " husky install" ,
66
67
"typescript" : " ^5.3.3" ,
67
68
"uuid" : " ^9.0.0"
68
69
}
69
- }
70
+ }
Original file line number Diff line number Diff line change 41
41
"test" : " npm run test:unit && npm run test:system" ,
42
42
"test:system" : " jest --config system.jest_config.ts" ,
43
43
"test:unit" : " jest --config unit.jest_config.ts" ,
44
+ "test:e2e" : " echo 'Nothing to e2e test'" ,
44
45
"installPlugin" : " npm install && npm run clean && npm run build && zowe plugins install ." ,
45
46
"preshrinkwrap" : " node ../../scripts/rewriteShrinkwrap.js" ,
46
47
"typedoc" : " typedoc --out ./docs/typedoc/ ./src/ --disableOutputCheck" ,
Original file line number Diff line number Diff line change 39
39
"test" : " npm run test:unit && npm run test:system" ,
40
40
"test:system" : " jest --config system.jest_config.ts" ,
41
41
"test:unit" : " jest --config unit.jest_config.ts" ,
42
+ "test:e2e" : " echo 'Nothing to e2e test'" ,
42
43
"installPlugin" : " npm install && npm run clean && npm run build && zowe plugins install ." ,
43
44
"typedoc" : " typedoc --out ./docs/typedoc/ ./src/ --disableOutputCheck" ,
44
45
"pretty" : " prettier --write \" src/**/*.ts\" \" __tests__/**/*.ts\" "
Original file line number Diff line number Diff line change 866
866
"tsupDep" : " node ./scripts/tsup-deps.js" ,
867
867
"getPrebuilds" : " node ./scripts/getSecretsPrebuilds.js" ,
868
868
"package" : " vsce package --dependencies --allow-star-activation && node ../../scripts/mv-pack.js cics-extension-for-zowe vsix" ,
869
- "test:e2e:prepare" : " extest get-vscode -s .cics && extest get-chromedriver -s .cics" ,
870
- "test:e2e:install" : " [ -f ../../dist/cics-extension*.vsix ] && extest install-vsix -f ../../dist/cics-extension*.vsix -s .cics -e .cics || { echo \" npm run package to build vsix first\" ; exit 1; }" ,
871
- "test:e2e:infra:setup" : " echo \" Using global config home: $ZOWE_CLI_HOME\" && rm -rf $ZOWE_CLI_HOME && mkdir -p $ZOWE_CLI_HOME" ,
872
- "test:e2e:run" : " extest setup-and-run '__tests__/lib/*.test.js' -s .cics -e .cics --code_version max --code_settings __tests__/__e2e__/settings.json && tsc --project __tests__/test-tsconfig.json" ,
873
- "test:e2e" : " export ZOWE_CLI_HOME=`pwd`/.e2e-global-settings && npm run test:e2e:infra:setup && npm run test:e2e:prepare && npm run test:e2e:install && npm run test:e2e:run" ,
869
+ "test:e2e:setup" : " echo \" Using global config home: $ZOWE_CLI_HOME\" && rm -rf $ZOWE_CLI_HOME && mkdir -p $ZOWE_CLI_HOME" ,
870
+ "test:e2e:run" : " tsc --project __tests__/test-tsconfig.json && extest setup-and-run '__tests__/lib/*.test.js' -s .cics -e .cics -c max -o __tests__/__e2e__/settings.json -i" ,
871
+ "test:e2e" : " export ZOWE_CLI_HOME=`pwd`/.e2e-global-settings && npm run test:e2e:setup && npm run test:e2e:run" ,
874
872
"pretty" : " prettier --write \" src/**/*.ts\" \" __tests__/**/*.ts\" "
875
873
},
876
874
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments