diff --git a/test/cases/web/core/ai/channel.test.ts b/test/cases/web/core/ai/channel.test.ts index 1c7c63ecb..ba6bbfc28 100644 --- a/test/cases/web/core/ai/channel.test.ts +++ b/test/cases/web/core/ai/channel.test.ts @@ -254,7 +254,7 @@ describe('channel api', () => { data: [ { timestamp: 1000, - models: [] + summary: [] } ] } @@ -262,13 +262,14 @@ describe('channel api', () => { const result = await getDashboardV2({ start_timestamp: 0, - end_timestamp: 1000 + end_timestamp: 1000, + timespan: 'minute' }); expect(result).toEqual([ { timestamp: 1000, - models: [] + summary: [] } ]); });