feat: extend operation log service and repository with pagination support
This commit is contained in:
@@ -41,7 +41,8 @@ test.describe('系统基础功能 E2E 测试', () => {
|
||||
|
||||
test('API代理配置验证', async ({ page }) => {
|
||||
await page.goto('/');
|
||||
const response = await page.request.get('http://localhost:3002/api/actuator/health');
|
||||
expect(response.status()).toBe(401);
|
||||
const response = await page.request.get('http://localhost:3001/api/actuator/health');
|
||||
expect(response.status()).toBeGreaterThanOrEqual(200);
|
||||
expect(response.status()).toBeLessThan(500);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user