From f112bfddbe2a62ec06972459caed3246254a023d Mon Sep 17 00:00:00 2001 From: Timo Glastra Date: Thu, 12 Sep 2024 16:05:51 +0200 Subject: [PATCH] style: fix Signed-off-by: Timo Glastra --- test/projects.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/projects.test.ts b/test/projects.test.ts index 1b28950..0f4aef6 100644 --- a/test/projects.test.ts +++ b/test/projects.test.ts @@ -7,8 +7,8 @@ dotenv.config() describe('Projects', () => { it('should return atleast one project', async () => { const client = new Paradym({ apiKey: process.env.X_ACCESS_TOKEN as string }) - const projects = await client.projects.getAllProjects({ - sort: '-createdAt' + const projects = await client.projects.getAllProjects({ + sort: '-createdAt', }) assert.ok(projects.data.length > 0)