( overrides: Partial<QueuedCommand> & Pick<QueuedCommand, 'value' | 'mode'>, )
| 24 | } from './sessionStorage.js' |
| 25 | |
| 26 | function createQueuedCommand( |
| 27 | overrides: Partial<QueuedCommand> & Pick<QueuedCommand, 'value' | 'mode'>, |
| 28 | ): QueuedCommand { |
| 29 | return { |
| 30 | ...overrides, |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | beforeEach(() => { |
| 35 | resetCommandQueue() |
no outgoing calls
no test coverage detected