refactor: offset cannot be null

This commit is contained in:
Carlos Valente
2024-07-07 20:26:41 +02:00
committed by Carlos Valente
parent e90e94828d
commit 938c5fbb4c
5 changed files with 7 additions and 7 deletions
@@ -201,7 +201,7 @@ describe('mutation on runtimeState', () => {
stop();
newState = getState();
expect(newState.runtime.actualStart).toBeNull();
expect(newState.runtime.offset).toBeNull();
expect(newState.runtime.offset).toBe(0);
expect(newState.runtime.expectedEnd).toBeNull();
});