Skip to content

Commit

Permalink
Add: マージキューでだけ落ちるテストを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Jan 4, 2025
1 parent 2640384 commit ff31e5e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/mergeQueueFail.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import test from "node:test";
import * as assert from "node:assert";
import child_process from "node:child_process";

test("マージキューだけ落ちるテスト", async () => {
const stdout = child_process.execSync("git branch --show-current").toString().trim();

assert.ok(!stdout.includes("gh-readonly-queue"));
})

0 comments on commit ff31e5e

Please sign in to comment.