6 lines
247 B
JavaScript
6 lines
247 B
JavaScript
describe('分享功能', () => {
|
|
test('创建分享链接', async () => { expect(true).toBe(true); });
|
|
test('通过链接访问', async () => { expect(true).toBe(true); });
|
|
test('删除分享', async () => { expect(true).toBe(true); });
|
|
});
|