Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions actions/setup/js/assign_agent_helpers.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ const mockGithub = {
globalThis.core = mockCore;
globalThis.github = mockGithub;

const { AGENT_LOGIN_NAMES, getAgentName, getAvailableAgentLogins, findAgent, getIssueDetails, getPullRequestDetails, assignAgentToIssue, generatePermissionErrorSummary, assignAgentToIssueByName } = await import(
"./assign_agent_helpers.cjs"
);
const { AGENT_LOGIN_NAMES, getAgentName, getAvailableAgentLogins, findAgent, getIssueDetails, getPullRequestDetails, assignAgentToIssue, generatePermissionErrorSummary, assignAgentToIssueByName } =
await import("./assign_agent_helpers.cjs");

describe("assign_agent_helpers.cjs", () => {
beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion pkg/workflow/shared_workflow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,6 @@ This is a main workflow that also has a redirect for update tracking.
// It may return a different error (e.g., if the workflow body is missing context), but not these two
}


func TestMainWorkflowWithoutMarkdownContent(t *testing.T) {
tempDir := testutil.TempDir(t, "test-main-no-markdown-*")

Expand Down
Loading