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
1 change: 0 additions & 1 deletion test/unit/actions-fallback-webhook.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ async function seedRepoAndPr(env: ReturnType<typeof createTestEnv>, headSha: str
autonomy: { merge: "observe", update_branch: "observe" },
aiReviewMode: "off",
gatePack: "oss-anti-slop",
gateCheckMode: "off",
checkRunMode: "off",
commentMode: "off",
publicSurface: "off",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/ci-completion-fork-resume.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ async function seedForkResumeRepo(env: ReturnType<typeof createTestEnv>, repo: s
await upsertRepositoryFromGitHub(env, { name: repo.split("/")[1] ?? "repo", full_name: repo, private: false, owner: { login: owner ?? "owner" } }, 5001);
// publicSurface/check/gate all OFF + no autonomy → reReviewStoredPullRequest is a clean no-op (no network),
// so the test isolates resolution + coalesce + audit, exactly the head-SHA fix surface.
await upsertRepositorySettings(env, { repoFullName: repo, publicSurface: "off", checkRunMode: "off", gateCheckMode: "off", autonomy: {} });
await upsertRepositorySettings(env, { repoFullName: repo, publicSurface: "off", checkRunMode: "off", autonomy: {} });
await upsertPullRequestFromGitHub(env, repo, { number: prNumber, title: "Fork PR", state: "open", user: { login: "outside-contributor" }, head: { sha: headSha }, labels: [], body: "fork change" });
}

Expand Down
3 changes: 0 additions & 3 deletions test/unit/linked-issue-satisfaction-run.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,6 @@ describe("linked-issue satisfaction wired end-to-end through the real webhook pi
publicSurface: "comment_only",
autoLabelEnabled: false,
checkRunMode: "off",
gateCheckMode: "enabled",
reviewCheckMode: "required",
gatePack: "oss-anti-slop",
linkedIssueGateMode: "off",
Expand Down Expand Up @@ -881,7 +880,6 @@ describe("linked-issue satisfaction wired end-to-end through the real webhook pi
publicSurface: "comment_only",
autoLabelEnabled: false,
checkRunMode: "off",
gateCheckMode: "enabled",
reviewCheckMode: "required",
gatePack: "oss-anti-slop",
linkedIssueGateMode: "off",
Expand Down Expand Up @@ -948,7 +946,6 @@ describe("linked-issue satisfaction wired end-to-end through the real webhook pi
publicSurface: "off",
autoLabelEnabled: false,
checkRunMode: "off",
gateCheckMode: "enabled",
reviewCheckMode: "required",
linkedIssueGateMode: "off",
linkedIssueSatisfactionGateMode: "advisory",
Expand Down
1 change: 0 additions & 1 deletion test/unit/parity-wire.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,6 @@ async function seedGateEnabledRepo(env: Env): Promise<void> {
publicSurface: "off",
autoLabelEnabled: false,
checkRunMode: "off",
gateCheckMode: "enabled",
reviewCheckMode: "required",
linkedIssueGateMode: "block",
requireLinkedIssue: true,
Expand Down
1 change: 0 additions & 1 deletion test/unit/policy-sanitizer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ function settingsFor(repoFullName: string, overrides: Partial<RepositorySettings
publicSignalLevel: "standard",
checkRunMode: "off",
checkRunDetailLevel: "standard",
gateCheckMode: "off",
regateSweepOrderMode: "staleness",
reviewCheckMode: "disabled",
gatePack: "gittensor",
Expand Down
112 changes: 52 additions & 60 deletions test/unit/queue-2.test.ts

Large diffs are not rendered by default.

84 changes: 42 additions & 42 deletions test/unit/queue-3.test.ts

Large diffs are not rendered by default.

Loading