From 7d9efc58392598d347fef400bd3acaa60e9441e2 Mon Sep 17 00:00:00 2001 From: Michael Cooper Date: Thu, 25 Apr 2024 12:40:19 -0700 Subject: [PATCH] test that git is available (#4) --- tests/{text-manip.test.ts => editing-tools.test.ts} | 1 + 1 file changed, 1 insertion(+) rename tests/{text-manip.test.ts => editing-tools.test.ts} (94%) diff --git a/tests/text-manip.test.ts b/tests/editing-tools.test.ts similarity index 94% rename from tests/text-manip.test.ts rename to tests/editing-tools.test.ts index e52222f..7a111fb 100644 --- a/tests/text-manip.test.ts +++ b/tests/editing-tools.test.ts @@ -3,6 +3,7 @@ import { binaryOnPathTest } from "./index.ts"; const textManipTools: { binary: string }[] = [ { binary: "ag" }, { binary: "awk" }, + { binary: "git" }, { binary: "grep" }, { binary: "nano" }, { binary: "rg" },