seedling/source/e2e/cucumber.js
Roman Jaroš a260d611bd
All checks were successful
forgejo/Procyon/seedling/pipeline/pr-master This commit looks good
forgejo/Procyon/seedling/pipeline/head This commit looks good
Rename source folders
2024-01-11 07:44:22 +01:00

24 lines
553 B
JavaScript

const argv = require('minimist')(process.argv);
const common = [
'src/features/home.feature',
'src/features/*.feature',
'--require-module ts-node/register',
'--require src/steps/**/*.ts',
'-f summary',
'-f json:report/report.json',
'-f @qavajs/html-formatter:report/report.html',
].join(' ');
module.exports = (async function () {
if (argv['p'] === 'ci') {
require('dotenv').config({ path: './config/.ci.env' });
} else {
require('dotenv').config({ path: './config/.local.env' });
}
return {
default: common,
ci: common,
};
})();