()
| 779 | |
| 780 | /** Dispose the current store and replace it with a fresh instance (no client attached). */ |
| 781 | const resetStore = () => { |
| 782 | store.dispose(); |
| 783 | store = new WorkspaceStore(mockOnModelUsed); |
| 784 | }; |
| 785 | |
| 786 | const recreateStore = (onResponseComplete?: ReturnType<typeof createResponseCompleteSpy>) => { |
| 787 | resetStore(); |
no test coverage detected