Browse Source

Remove unnecessary imports

Only define used imports in tests.
master
TheoryOfNekomata 2 years ago
parent
commit
4d333e1d5c
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      src/__tests__/formatting.test.ts
  2. +2
    -2
      src/__tests__/readers.test.ts

+ 1
- 1
src/__tests__/formatting.test.ts View File

@@ -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';


+ 2
- 2
src/__tests__/readers.test.ts View File

@@ -1,7 +1,7 @@
import * as obliqueStrategiesCore from '@theoryofnekomata/oblique-strategies-core';
import {
afterAll, afterEach,
beforeAll, beforeEach,
afterAll,
beforeAll,
describe,
expect,
it, vi,


Loading…
Cancel
Save