From e414cff0721dc776f24e8ec704496b83cb34934e Mon Sep 17 00:00:00 2001 From: Thijs Limmen Date: Wed, 22 Mar 2023 17:19:49 +0100 Subject: [PATCH] =?UTF-8?q?refactor(tests):=20=F0=9F=94=A7=20Rename=20test?= =?UTF-8?q?=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rename the test files for better code organization and maintainability. --- tests/index.ts | 4 ++-- tests/specs/{cli.ts => cli.spec.ts} | 0 tests/specs/{config.ts => config.spec.ts} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/specs/{cli.ts => cli.spec.ts} (100%) rename tests/specs/{config.ts => config.spec.ts} (100%) diff --git a/tests/index.ts b/tests/index.ts index d5164092..0efc6e09 100644 --- a/tests/index.ts +++ b/tests/index.ts @@ -1,6 +1,6 @@ import { describe } from 'manten'; describe('aicommits', ({ runTestSuite }) => { - runTestSuite(import('./specs/cli.js')); - runTestSuite(import('./specs/config.js')); + runTestSuite(import('./specs/cli.spec.js')); + runTestSuite(import('./specs/config.spec.js')); }); diff --git a/tests/specs/cli.ts b/tests/specs/cli.spec.ts similarity index 100% rename from tests/specs/cli.ts rename to tests/specs/cli.spec.ts diff --git a/tests/specs/config.ts b/tests/specs/config.spec.ts similarity index 100% rename from tests/specs/config.ts rename to tests/specs/config.spec.ts