Fix extra closing parenthesis in code sample

Signed-off-by: Gaël Gothuey <gothuey.gael@gmail.com>
Signed-off-by: gaelgoth <gothuey.gael@gmail.com>
This commit is contained in:
Gaël Gothuey
2024-06-20 16:28:15 +02:00
committed by gaelgoth
parent a4cfe9d6f4
commit 18daa1faaa
@@ -138,8 +138,10 @@ describe('MyDatabaseClass', () => {
await knex<FooTableRow>('foo').insert({ value: 2 });
// drive your system under test as usual
await expect(subject.foos()).resolves.toEqual([{ value: 2 }]);
});
},
);
});
});
```
If you want to pass the test database instance into backend plugins or services,