Files
lobehub/e2e/cucumber.config.js
Arvin Xu df1710bbed test: add page e2e testing (#11423)
* add page e2e

* move

* add more e2e for page

* update

* fix keyboard

* update
2026-01-12 15:41:02 +08:00

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,
};