import { test } from "./main.js"; // Verify `main` successfully obtains a token when the `owner` and `repositories` inputs are set (and the latter is a list of repos). await test(() => { process.env.INPUT_OWNER = process.env.GITHUB_REPOSITORY_OWNER; const currentRepoName = process.env.GITHUB_REPOSITORY.split("/")[1]; // Intentional unnecessary whitespace to test parsing to array process.env.INPUT_REPOSITORIES = ` ${currentRepoName}, toolkit ,checkout`; });