chore: code formatting

This commit is contained in:
github-actions[bot]
2022-07-07 03:42:46 +00:00
parent 33a2f43c59
commit 947d45559b
18 changed files with 44 additions and 35 deletions

View File

@@ -119,7 +119,7 @@ describe("GitHub Action", () =>
if ((skip.includes(template)) || ((modes.length) && (!modes.includes("action"))))
test.skip(name, () => null)
else
test(name, async () => expect(await action.run({template, base: "", query: JSON.stringify(query), plugins_errors_fatal: true, dryrun: true, use_mocked_data: true, verify: true, retries:1, ...input})).toBe(true), timeout)
test(name, async () => expect(await action.run({template, base: "", query: JSON.stringify(query), plugins_errors_fatal: true, dryrun: true, use_mocked_data: true, verify: true, retries: 1, ...input})).toBe(true), timeout)
}
}))