From 173cf215f06f3f84a1d14d3a148c207ed1012a44 Mon Sep 17 00:00:00 2001 From: neki-dev Date: Mon, 12 Feb 2024 03:15:49 +0300 Subject: [PATCH] Fix tests --- src/game/scenes/world/wave/__tests__/index.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game/scenes/world/wave/__tests__/index.test.ts b/src/game/scenes/world/wave/__tests__/index.test.ts index 45b0bdea..6c02b03a 100644 --- a/src/game/scenes/world/wave/__tests__/index.test.ts +++ b/src/game/scenes/world/wave/__tests__/index.test.ts @@ -3,7 +3,8 @@ import 'jest-canvas-mock'; import { registerHelper } from './helpers/wave'; import world from '../../__mocks__/world'; import { Wave } from '..'; -import type { IWave, WaveEvent } from '../types'; +import type { IWave } from '../types'; +import { WaveEvent } from '../types'; import { DIFFICULTY } from '../../../../../const/difficulty'; import type { IWorld } from '../../types'; import { progressionLinear } from '../../../../../lib/progression';