testing CI

This commit is contained in:
Michael C
2021-07-14 14:11:34 -04:00
parent 5f2bc37e96
commit 8ee51a1cb0
2 changed files with 3 additions and 4 deletions

View File

@@ -106,10 +106,10 @@ describe("getSkipSegmentsByHash", () => {
.catch(err => done(err));
});
it("Should return 404 for no hash", (done: Done) => {
it("Should return 400 for no hash", (done: Done) => {
fetch(`${getbaseURL()}/api/skipSegments/?categories=["shilling"]`)
.then(res => {
assert.strictEqual(res.status, 404);
assert.strictEqual(res.status, 400);
done();
})
.catch(err => done(err));