test: integration tests (#40)

Co-authored-by: Gregor Martynus <39992+gr2m@users.noreply.github.com>
This commit is contained in:
Parker Brown
2023-09-05 08:32:55 -07:00
committed by GitHub
parent 49ce228ea7
commit 10f155294b
10 changed files with 2021 additions and 8 deletions

View File

@@ -7,7 +7,10 @@
export async function post(core, request) {
const token = core.getState("token");
if (!token) return;
if (!token) {
core.info("Token is not set");
return;
}
await request("DELETE /installation/token", {
headers: {