Merge pull request #432 from mchangrh/eslint-and-workflow

eslint + workflow formatting
This commit is contained in:
Ajay Ramachandran
2021-12-20 23:44:09 -05:00
committed by GitHub
8 changed files with 31 additions and 19 deletions

View File

@@ -59,7 +59,7 @@ describe("getRating", () => {
});
/*
This test will fail if tests are already ran with redis.
This test will fail if tests are already ran with redis.
*/
it("Should be able to bulk fetch", (done) => {
getBulkRating([videoOnePartialHash, videoTwoPartialHash])

View File

@@ -25,8 +25,8 @@ describe("redis test", function() {
it("Should not be able to get not stored value", (done) => {
redis.getAsync(randKey2)
.then(res => {
if (res.reply || res.err ) assert.fail("Value should not be found")
if (res.reply || res.err ) assert.fail("Value should not be found");
done();
});
})
});
});