Skip to content

Commit

Permalink
test: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ghornyak_gartner committed Aug 17, 2024
1 parent e26b343 commit 0ee15b2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/create-navigation-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe('createNavigationConfig', () => {
params: z.object({
orgId: z.string(),
userId: z.string(),
catch_all: z.array(z.string()).default([])
catch_all: z.array(z.string()).default([]),
}),
},
),
Expand All @@ -169,7 +169,11 @@ describe('createNavigationConfig', () => {
});

expect(
routes.organizationUser({ orgId: 'org_123', userId: 'user_123', catch_all: ['channel_123'] }),
routes.organizationUser({
orgId: 'org_123',
userId: 'user_123',
catch_all: ['channel_123'],
}),
).toBe('/organizations/org_123/users/user_123/channel_123');
});

Expand Down

0 comments on commit 0ee15b2

Please sign in to comment.