Skip to content

Commit 0b646d2

Browse files
bertho-zerodaffl
authored andcommitted
fix 'await await' (#226)
1 parent 0ce21b3 commit 0b646d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/index.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ describe('Feathers Knex Service', () => {
489489

490490
await app.service('/test').create({});
491491

492-
const created = await await app.service('/people').find();
492+
const created = await app.service('/people').find();
493493

494494
expect(created).to.have.length(1);
495495
expect(created[0]).to.have.property('name', 'Success');

0 commit comments

Comments
 (0)