新增e2e测试脚本,修复部分问题

This commit was merged in pull request #51.
This commit is contained in:
2026-07-22 20:00:13 +08:00
parent 53d1ce6fb2
commit 4c07ec5455
105 changed files with 21700 additions and 318 deletions
+9
View File
@@ -0,0 +1,9 @@
module.exports = {
testEnvironment: 'node',
testMatch: ['**/e2e/**/*.spec.js'],
testTimeout: 120000,
globalSetup: '<rootDir>/e2e/global-setup.js',
globalTeardown: '<rootDir>/e2e/global-teardown.js',
verbose: true,
maxWorkers: 1
};