From d9ed3e87f696bd7249261358a1d8be66e6bb0a2c Mon Sep 17 00:00:00 2001 From: Amiel Martin Date: Wed, 15 Sep 2021 09:58:18 -0800 Subject: [PATCH] Format --- __tests__/main.test.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index 5a0990ef..1c61fc14 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -105,7 +105,7 @@ describe("run", () => { }); it("adds labels based on the branch names that match the glob pattern", async () => { - github.context.payload.pull_request!.head = {ref: "test/testing-time"}; + github.context.payload.pull_request!.head = { ref: "test/testing-time" }; usingLabelerConfigYaml("branches.yml"); await run(); @@ -119,7 +119,9 @@ describe("run", () => { }); it("adds labels based on branch names that match different glob patterns", async () => { - github.context.payload.pull_request!.head = {ref: "my/feature/that-i-like"}; + github.context.payload.pull_request!.head = { + ref: "my/feature/that-i-like", + }; usingLabelerConfigYaml("branches.yml"); await run();