From d4980e9d510a7ad1bc85fd364dc241493e5519a5 Mon Sep 17 00:00:00 2001 From: sevenc-nanashi Date: Sat, 4 Jan 2025 09:43:56 +0900 Subject: [PATCH] =?UTF-8?q?Code:=20=E3=83=95=E3=82=A9=E3=83=BC=E3=83=9E?= =?UTF-8?q?=E3=83=83=E3=83=88=E3=82=92=E3=81=8B=E3=81=91=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mergeQueueFail.test.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/mergeQueueFail.test.ts b/src/mergeQueueFail.test.ts index 2924b62..cd7b6ae 100644 --- a/src/mergeQueueFail.test.ts +++ b/src/mergeQueueFail.test.ts @@ -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")); -}) +});