UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

21 lines (20 loc) 480 B
/** * @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: process.env.CI ? 1 : 4, paths: ['src/features/**/*.feature'], publishQuiet: true, require: ['src/steps/**/*.ts', 'src/support/**/*.ts'], requireModule: ['tsx/cjs'], retry: 0, timeout: 120_000, };