Skip to content

Commit

Permalink
Remove non usefull test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonStnn committed Jun 15, 2024
1 parent 19ca365 commit d1121f3
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/balloon.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import Balloon from '@/balloon';
import { random } from '@/utils';

// Create a concrete subclass of Balloon for testing
class TestBalloon extends Balloon {
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit d1121f3

Please sign in to comment.