mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-04 04:16:22 +00:00
test(unit): fix notes service
Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
4188b21685
commit
2ea2459c9b
1 changed files with 3 additions and 0 deletions
|
@ -235,6 +235,7 @@ describe('NotesService', () => {
|
|||
|
||||
it('with no note', async () => {
|
||||
const createQueryBuilder = {
|
||||
leftJoinAndSelect: () => createQueryBuilder,
|
||||
where: () => createQueryBuilder,
|
||||
getMany: async () => {
|
||||
return null;
|
||||
|
@ -251,6 +252,7 @@ describe('NotesService', () => {
|
|||
|
||||
it('with one note', async () => {
|
||||
const createQueryBuilder = {
|
||||
leftJoinAndSelect: () => createQueryBuilder,
|
||||
where: () => createQueryBuilder,
|
||||
getMany: async () => {
|
||||
return [note];
|
||||
|
@ -267,6 +269,7 @@ describe('NotesService', () => {
|
|||
|
||||
it('with multiple note', async () => {
|
||||
const createQueryBuilder = {
|
||||
leftJoinAndSelect: () => createQueryBuilder,
|
||||
where: () => createQueryBuilder,
|
||||
getMany: async () => {
|
||||
return [note, note];
|
||||
|
|
Loading…
Reference in a new issue