We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb47845 commit 6b41a39Copy full SHA for 6b41a39
src/arc-runner.test.ts
@@ -1,9 +1,9 @@
1
-import { isArcRunner, sendAllowedEndpoints } from "./arc-runner";
+import { isARCRunner } from "./arc-runner";
2
3
it("should correctly recognize arc based runner", async () => {
4
process.env["GITHUB_ACTIONS_RUNNER_EXTRA_USER_AGENT"] =
5
"actions-runner-controller/2.0.1";
6
7
- let isArc: boolean = await isArcRunner();
+ let isArc: boolean = await isARCRunner();
8
expect(isArc).toBe(true);
9
});
0 commit comments