From 4d333e1d5c3ac7023896b48d848c4677a7c3ba2b Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Thu, 14 Apr 2022 15:36:48 +0800 Subject: [PATCH] Remove unnecessary imports Only define used imports in tests. --- src/__tests__/formatting.test.ts | 2 +- src/__tests__/readers.test.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/__tests__/formatting.test.ts b/src/__tests__/formatting.test.ts index 7d5ff43..8acea18 100644 --- a/src/__tests__/formatting.test.ts +++ b/src/__tests__/formatting.test.ts @@ -4,7 +4,7 @@ import { describe, it, expect, - vi, beforeAll, afterAll, beforeEach, afterEach, + vi, beforeAll, afterAll, } from 'vitest'; import { main } from '../app'; import * as presenters from '../presenters'; diff --git a/src/__tests__/readers.test.ts b/src/__tests__/readers.test.ts index 524c8f9..09c95c7 100644 --- a/src/__tests__/readers.test.ts +++ b/src/__tests__/readers.test.ts @@ -1,7 +1,7 @@ import * as obliqueStrategiesCore from '@theoryofnekomata/oblique-strategies-core'; import { - afterAll, afterEach, - beforeAll, beforeEach, + afterAll, + beforeAll, describe, expect, it, vi,