mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
22 lines
479 B
JavaScript
22 lines
479 B
JavaScript
/**
|
|
* @type {import('@cucumber/cucumber').IConfiguration}
|
|
*/
|
|
export default {
|
|
format: [
|
|
'progress-bar',
|
|
'html:reports/cucumber-report.html',
|
|
'json:reports/cucumber-report.json',
|
|
],
|
|
formatOptions: {
|
|
snippetInterface: 'async-await',
|
|
},
|
|
parallel: 1,
|
|
paths: ['src/features/**/*.feature'],
|
|
publishQuiet: true,
|
|
require: ['src/steps/**/*.ts', 'src/support/**/*.ts'],
|
|
requireModule: ['tsx/cjs'],
|
|
retry: 0,
|
|
tags: 'not @skip',
|
|
timeout: 30_000,
|
|
};
|