We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e86f0f + 64e8038 commit 7e66973Copy full SHA for 7e66973
extension/src/test/suite/plots/index.test.ts
@@ -1215,13 +1215,13 @@ suite('Plots Test Suite', () => {
1215
plotsDiff: plotsDiffFixture
1216
})
1217
1218
- const executeCommandSpy = spy(commands, 'executeCommand')
+ const mockExecuteCommand = stub(commands, 'executeCommand')
1219
1220
mockMessageReceived.fire({
1221
type: MessageFromWebviewType.ADD_PIPELINE_PLOT
1222
1223
1224
- expect(executeCommandSpy).to.be.calledWithExactly(
+ expect(mockExecuteCommand).to.be.calledWithExactly(
1225
RegisteredCommands.PIPELINE_ADD_PLOT,
1226
dvcDemoPath
1227
)
0 commit comments