From c235374b9d2c6729a905fea3d204752de56f0ccc Mon Sep 17 00:00:00 2001 From: Federico Builes Date: Wed, 1 Jun 2022 13:42:22 +0200 Subject: [PATCH] Removing redundant test. --- __tests__/config.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/__tests__/config.test.ts b/__tests__/config.test.ts index 90f80ce..a45dc7a 100644 --- a/__tests__/config.test.ts +++ b/__tests__/config.test.ts @@ -7,10 +7,6 @@ test('reads the config file', async () => { expect(options.allow_licenses).toEqual(['BSD', 'GPL 2']) }) -test('has a default config filepath', async () => { - expect(true).toEqual(true) -}) - test('the default config path handles .yml and .yaml', async () => { expect(true).toEqual(true) })