style: fix linting issues met Prettier
This commit is contained in:
parent
78cb7812a7
commit
fc7a49d69b
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ describe('AssignmentRepository', () => {
|
||||||
const result = await assignmentRepository.findAllByResponsibleTeacher('testleerkracht1');
|
const result = await assignmentRepository.findAllByResponsibleTeacher('testleerkracht1');
|
||||||
const resultIds = result.map((it) => it.id).sort((a, b) => (a ?? 0) - (b ?? 0));
|
const resultIds = result.map((it) => it.id).sort((a, b) => (a ?? 0) - (b ?? 0));
|
||||||
|
|
||||||
expect(resultIds).toEqual([ 21000, 21002, 21003 ]);
|
expect(resultIds).toEqual([21000, 21002, 21003]);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not find removed assignment', async () => {
|
it('should not find removed assignment', async () => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue