fix(core): update

This commit is contained in:
2021-11-12 19:02:29 +01:00
parent f50a61308c
commit 28d57efd9e
6 changed files with 15 additions and 14 deletions

View File

@ -202,7 +202,7 @@ tap.test('should store a new Truck', async () => {
tap.test('should use a cursor', async () => {
const cursor = await Truck.getCursor({});
cursor.forEach(async truckArg => {
cursor.forEach(async (truckArg) => {
console.log(truckArg.id);
});
});