Skip to content

Commit

Permalink
Code: フォーマットをかける
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenc-nanashi committed Jan 4, 2025
1 parent ff31e5e commit d4980e9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/mergeQueueFail.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import test from "node:test";
import * as assert from "node:assert";
import child_process from "node:child_process";
import test from "node:test";

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

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

0 comments on commit d4980e9

Please sign in to comment.