huskies: merge 950
This commit is contained in:
@@ -277,7 +277,6 @@ describe("Slash command handling (Story 374)", () => {
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith(
|
||||
"status",
|
||||
"",
|
||||
undefined,
|
||||
);
|
||||
});
|
||||
expect(await screen.findByText("Pipeline: 3 active")).toBeInTheDocument();
|
||||
@@ -302,7 +301,6 @@ describe("Slash command handling (Story 374)", () => {
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith(
|
||||
"status",
|
||||
"42",
|
||||
undefined,
|
||||
);
|
||||
});
|
||||
});
|
||||
@@ -324,7 +322,6 @@ describe("Slash command handling (Story 374)", () => {
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith(
|
||||
"start",
|
||||
"42 opus",
|
||||
undefined,
|
||||
);
|
||||
});
|
||||
expect(await screen.findByText("Started agent")).toBeInTheDocument();
|
||||
@@ -348,7 +345,7 @@ describe("Slash command handling (Story 374)", () => {
|
||||
});
|
||||
|
||||
await waitFor(() => {
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith("git", "", undefined);
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith("git", "");
|
||||
});
|
||||
});
|
||||
|
||||
@@ -370,7 +367,7 @@ describe("Slash command handling (Story 374)", () => {
|
||||
});
|
||||
|
||||
await waitFor(() => {
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith("cost", "", undefined);
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith("cost", "");
|
||||
});
|
||||
});
|
||||
|
||||
@@ -446,7 +443,7 @@ describe("Slash command handling (Story 374)", () => {
|
||||
});
|
||||
|
||||
await waitFor(() => {
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith("help", "", undefined);
|
||||
expect(mockedApi.botCommand).toHaveBeenCalledWith("help", "");
|
||||
});
|
||||
expect(lastSendChatArgs).toBeNull();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user