Fix Prettier using correct version (1.19.1)

This commit is contained in:
Penar Musaraj
2019-11-15 10:34:26 -05:00
parent 655e610357
commit cc8baa1a7c
26 changed files with 102 additions and 41 deletions

View File

@ -141,7 +141,11 @@ QUnit.test("closestPostNumberFor", assert => {
QUnit.test("closestDaysAgoFor", assert => {
const postStream = buildStream(1231);
postStream.set("timelineLookup", [[1, 10], [3, 8], [5, 1]]);
postStream.set("timelineLookup", [
[1, 10],
[3, 8],
[5, 1]
]);
assert.equal(postStream.closestDaysAgoFor(1), 10);
assert.equal(postStream.closestDaysAgoFor(2), 10);