🇨🇳中文 | 🇬🇧English
一个使用 Jest 的 SuperTest API 自动化测试演示项目
- Nodejs ,我使用的 v21.1.0
- SuperTest 我使用的 6.3.3 版本
- Jest 我使用的是最新的 29.7.0 版本
- SuperTest
- Jest
- jest-html-reporters
- GitHub action
SuperTest-Jest-demo
├── README.md
├── package.json
├── package-lock.json
├── Config // 测试配置文件
│ └── config.js
├── Config // 测试数据文件
│ └── requestData.js
│ └── responseData.js
├── Specs // 测试用例文件
│ └── test.spec.js
├── Utils // 测试工具文件
│ └── utils.js
├── Report // 测试报告文件
│ └── report.html
├── .gitignore
└── node_modules // 项目依赖
node run test
- 在 Specs目录下新加测试用例即可