From d1121f3346162fa28eb31a762c327f8815ed59c2 Mon Sep 17 00:00:00 2001 From: SimonStnn Date: Sat, 15 Jun 2024 10:45:43 +0200 Subject: [PATCH] Remove non usefull test --- tests/balloon.test.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/balloon.test.ts b/tests/balloon.test.ts index 6220c890..06e55d2f 100644 --- a/tests/balloon.test.ts +++ b/tests/balloon.test.ts @@ -1,5 +1,4 @@ import Balloon from '@/balloon'; -import { random } from '@/utils'; // Create a concrete subclass of Balloon for testing class TestBalloon extends Balloon { @@ -44,12 +43,6 @@ describe('Balloon', () => { expect(balloon.name).toBe('test'); }); - test('balloon should be rising after rise is called', () => { - expect(balloon.isRising()).toBe(false); - balloon.rise(); - expect(balloon.isRising()).toBe(true); - }); - test('balloon should not be rising after remove is called', () => { balloon.rise(); balloon.remove();