Drop node v10 support (#1471)

This commit is contained in:
Tomas Della Vedova
2021-05-20 16:16:45 +02:00
committed by delvedor
parent 9a021f8445
commit 4ec32601e7
33 changed files with 655 additions and 668 deletions

View File

@ -64,8 +64,8 @@ test('search helper', async t => {
}
}
})
t.strictEqual(results.length, 10)
t.equal(results.length, 10)
for (const result of results) {
t.true(result.title.toLowerCase().includes('javascript'))
t.ok(result.title.toLowerCase().includes('javascript'))
}
})