Skip to content
Snippets Groups Projects

Refactor Jest CI scripts

Merged Mark Florian requested to merge extract-jest-ci-script into master
@@ -35,7 +35,7 @@ function parseArgumentsAndEnvironment() {
'Only run specs affected by the changes in the merge request. The default is to run all specs.',
)
.option(
'--fixtures-only',
'--fixtures',
'Only run specs which rely on generated fixtures. The default is to only run specs which do not rely on generated fixtures.',
)
.option('--coverage', 'Tell Jest to generate coverage. The default is not to.')
@@ -65,7 +65,7 @@ function parseArgumentsAndEnvironment() {
return {
vue3: program.vue3,
predictive: program.predictive,
fixturesOnly: program.fixturesOnly,
fixtures: program.fixtures,
coverage: program.coverage,
nodeIndex: process.env.CI_NODE_INDEX ?? '1',
nodeTotal: process.env.CI_NODE_TOTAL ?? '1',
@@ -73,7 +73,7 @@ function parseArgumentsAndEnvironment() {
};
}
function runJest({ vue3, predictive, fixturesOnly, coverage, nodeIndex, nodeTotal, changedFiles }) {
function runJest({ vue3, predictive, fixtures, coverage, nodeIndex, nodeTotal, changedFiles }) {
const commonArguments = [
'--config',
'jest.config.js',
@@ -102,7 +102,7 @@ function runJest({ vue3, predictive, fixturesOnly, coverage, nodeIndex, nodeTota
stdio: 'inherit',
env: {
...process.env,
...(fixturesOnly ? { JEST_FIXTURE_JOBS_ONLY: '1' } : {}),
...(fixtures ? { JEST_FIXTURE_JOBS_ONLY: '1' } : {}),
...(vue3 ? { VUE_VERSION: '3' } : {}),
},
},
Loading