guanghulab/jest.smoke.config.js
2026-05-10 13:12:44 +08:00

9 lines
170 B
JavaScript

// jest.smoke.config.js
// 冒烟测试 Jest 配置
module.exports = {
testEnvironment: 'node',
testMatch: ['**/tests/smoke/**/*.test.js'],
testTimeout: 30000,
};