Merge branch 'master' of https://github.com/ajayyy/SponsorBlockServer into stricter-eslint

This commit is contained in:
Michael C
2021-07-13 15:55:03 -04:00
18 changed files with 145 additions and 48 deletions

View File

@@ -610,7 +610,7 @@ describe("postSkipSegments", () => {
done(); // success
} else {
const body = await res.text();
done(`Status code was ${ res.status } ${ body}`);
done(`Status code was ${res.status} ${body}`);
}
})
.catch(err => done(err));
@@ -636,7 +636,7 @@ describe("postSkipSegments", () => {
done(); // success
} else {
const body = await res.text();
done(`Status code was ${ res.status } ${ body}`);
done(`Status code was ${res.status} ${body}`);
}
})
.catch(err => done(err));