Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
YoussefBouch committed Sep 9, 2024
1 parent f8afb71 commit 3c5d4e1
Showing 1 changed file with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
LIMIT,
);
expect(result.length).toBe(2);
});
Expand All @@ -164,7 +163,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
organisation.name,
LIMIT,
);
expect(result.length).toBe(1);
});
Expand All @@ -176,7 +174,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
LIMIT,
);
expect(result.length).toBe(0);
});
Expand Down Expand Up @@ -205,7 +202,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(4);
Expand All @@ -222,7 +218,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(2);
Expand All @@ -240,7 +235,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(3);
Expand All @@ -258,7 +252,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(3);
Expand All @@ -279,7 +272,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(3);
Expand All @@ -295,7 +287,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(2);
Expand All @@ -322,7 +313,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(4);
Expand All @@ -339,7 +329,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toBe(2);
Expand All @@ -361,7 +350,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toEqual(2);
Expand All @@ -383,7 +371,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toEqual(2);
Expand All @@ -405,7 +392,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toEqual(2);
Expand All @@ -427,7 +413,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toEqual(2);
Expand All @@ -449,7 +434,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toEqual(2);
Expand All @@ -471,7 +455,6 @@ describe('PersonenkontextWorkflow', () => {
const result: Organisation<true>[] = await anlage.findAllSchulstrukturknoten(
personpermissionsMock,
undefined,
10,
);

expect(result.length).toEqual(2);
Expand Down

0 comments on commit 3c5d4e1

Please sign in to comment.