File tree 2 files changed +4
-4
lines changed
.github/workflows/templates
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4
4
# name: capitalized noun form
5
5
# testFilePrefix: node-update # for node-update.test.mjs
6
6
- name : Integration
7
- mochaPostfix : " --grep '.* \\ /e2e\\ /integration\\ /.* '"
7
+ mochaPostfix : " 'test /e2e/integration/**/*.mjs '"
8
8
9
9
- name : Standard
10
- mochaPostfix : " 'test/e2e/**/*.mjs' --ignore 'test/unit/**/*.mjs' --ignore 'test/e2e/commands/mirror_node*.mjs' --ignore 'test/e2e/commands/node*.mjs' --ignore 'test/e2e/commands/separate_node*.mjs' --ignore 'test/e2e/commands/relay*.mjs'"
10
+ mochaPostfix : " 'test/e2e/**/*.mjs' --ignore 'test/unit/**/*.mjs' --ignore 'test/e2e/integration/**/*.mjs' --ignore 'test/e2e/ commands/mirror_node*.mjs' --ignore 'test/e2e/commands/node*.mjs' --ignore 'test/e2e/commands/separate_node*.mjs' --ignore 'test/e2e/commands/relay*.mjs'"
11
11
timeout : 30000
12
12
13
13
- name : Mirror Node
Original file line number Diff line number Diff line change 13
13
"scripts" : {
14
14
"test" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Unit Tests\" c8 --reporter=text --reporter=html --report-dir='coverage/unit' mocha --recursive --file 'test/setup.mjs' 'test/unit/**/*.mjs' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit.xml --check-leaks --timeout 20000" ,
15
15
"test-e2e-all" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E All Tests\" nyc --reporter=text --reporter=html --report-dir='coverage/e2e-all' mocha --recursive --file 'test/setup.mjs' 'test/e2e/**/*.mjs' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-all.xml --check-leaks --timeout 20000" ,
16
- "test-e2e-integration" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E Integration Tests\" c8 --reporter=clover --reporter=lcov --reporter=text --report-dir='coverage/e2e-integration' mocha --verbose --recursive --file 'test/setup.mjs' --grep '.* \ / e2e\ / integration\/ .* ' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-integration.xml --check-leaks --timeout 20000" ,
17
- "test-e2e-standard" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E Standard Tests\" c8 --reporter=clover --reporter=lcov --reporter=text --report-dir='coverage/e2e-standard' mocha --verbose --recursive --file 'test/setup.mjs' 'test/e2e/**/*.mjs' --ignore 'test/unit/**/*.mjs' --ignore 'test/e2e/commands/mirror_node*.mjs' --ignore 'test/e2e/commands/node*.mjs' --ignore 'test/e2e/commands/separate_node*.mjs' --ignore 'test/e2e/commands/relay*.mjs' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-standard.xml --check-leaks --timeout 30000" ,
16
+ "test-e2e-integration" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E Integration Tests\" c8 --reporter=clover --reporter=lcov --reporter=text --report-dir='coverage/e2e-integration' mocha --verbose --recursive --file 'test/setup.mjs' 'test /e2e/integration/**/*.mjs ' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-integration.xml --check-leaks --timeout 20000" ,
17
+ "test-e2e-standard" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E Standard Tests\" c8 --reporter=clover --reporter=lcov --reporter=text --report-dir='coverage/e2e-standard' mocha --verbose --recursive --file 'test/setup.mjs' 'test/e2e/**/*.mjs' --ignore 'test/unit/**/*.mjs' --ignore 'test/e2e/integration/**/*.mjs' --ignore 'test/e2e/ commands/mirror_node*.mjs' --ignore 'test/e2e/commands/node*.mjs' --ignore 'test/e2e/commands/separate_node*.mjs' --ignore 'test/e2e/commands/relay*.mjs' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-standard.xml --check-leaks --timeout 30000" ,
18
18
"test-e2e-mirror-node" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E Mirror Node Tests\" c8 --reporter=clover --reporter=lcov --reporter=text --report-dir='coverage/e2e-mirror-node' mocha --verbose --recursive --file 'test/setup.mjs' 'test/e2e/commands/mirror_node.test.mjs' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-mirror-node.xml --check-leaks --timeout 20000" ,
19
19
"test-e2e-node-pem-stop" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E Node PEM Stop Tests\" c8 --reporter=clover --reporter=lcov --reporter=text --report-dir='coverage/e2e-node-pem-stop' mocha --verbose --recursive --file 'test/setup.mjs' 'test/e2e/commands/node_pem_stop.test.mjs' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-node-pem-stop.xml --check-leaks --timeout 20000" ,
20
20
"test-e2e-node-pem-kill" : " cross-env NODE_OPTIONS=--experimental-vm-modules MOCHA_SUITE_NAME=\" Mocha E2E Node PEM Kill Tests\" c8 --reporter=clover --reporter=lcov --reporter=text --report-dir='coverage/e2e-node-pem-kill' mocha --verbose --recursive --file 'test/setup.mjs' 'test/e2e/commands/node_pem_kill.test.mjs' --exit --reporter mocha-junit-reporter --reporter-options mochaFile=junit-e2e-node-pem-kill.xml --check-leaks --timeout 20000" ,
You can’t perform that action at this time.
0 commit comments