Skip to content

Commit

Permalink
test(builtins): update time sync
Browse files Browse the repository at this point in the history
  • Loading branch information
narekhovhannisyan committed Sep 4, 2024
1 parent 18dd4c1 commit 359e600
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/__tests__/if-run/builtins/time-sync.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,12 @@ describe('builtins/time-sync:', () => {
{
timestamp: '2023-12-12T00:00:00.000Z',
duration: 1,
'cpu/utilization': null,
'cpu/utilization': 10,
},
{
timestamp: '2023-12-12T00:00:01.000Z',
duration: 1,
'cpu/utilization': null,
'cpu/utilization': 10,
},
];

Expand Down Expand Up @@ -578,12 +578,12 @@ describe('builtins/time-sync:', () => {
{
timestamp: '2023-12-12T00:00:00.000Z',
duration: 5,
'resources-total': null,
'resources-total': 10,
},
{
timestamp: '2023-12-12T00:00:05.000Z',
duration: 5,
'resources-total': null,
duration: 4,
'resources-total': 10,
},
];

Expand Down Expand Up @@ -627,9 +627,9 @@ describe('builtins/time-sync:', () => {
},
{
timestamp: '2023-12-12T00:00:05.000Z',
duration: 5,
duration: 4,
'resources-total': 10,
'time-reserved': 3.2,
'time-reserved': 3.75,
},
];

Expand Down Expand Up @@ -676,9 +676,9 @@ describe('builtins/time-sync:', () => {
},
{
timestamp: '2023-12-12T00:00:05.000Z',
duration: 5,
duration: 4,
'resources-total': 10,
'time-allocated': 3.2,
'time-allocated': 3.75,
},
];

Expand Down

0 comments on commit 359e600

Please sign in to comment.