测试: 添加文件管理E2E测试
This commit is contained in:
parent
5f60f027ce
commit
892e5acd50
17
tests/e2e/file-management.spec.js
Normal file
17
tests/e2e/file-management.spec.js
Normal file
@ -0,0 +1,17 @@
|
||||
// 文件管理E2E测试
|
||||
describe('文件管理', () => {
|
||||
test('上传文件流程', async () => {
|
||||
// 登录 -> 选择文件 -> 上传 -> 验证
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
|
||||
test('创建文件夹流程', async () => {
|
||||
// 登录 -> 新建文件夹 -> 验证存在
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
|
||||
test('删除文件流程', async () => {
|
||||
// 登录 -> 选择文件 -> 删除 -> 验证
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user