Merge pull request #25344 from gaelgoth/doc/fix-extra-closing-parenthesis

Fix extra closing parenthesis in code sample
This commit is contained in:
Ben Lambert
2024-06-25 10:37:31 +02:00
committed by GitHub
@@ -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,