Skip to content

Commit

Permalink
fix: remove test thats not longer valid
Browse files Browse the repository at this point in the history
  • Loading branch information
montelaidev committed Jun 21, 2024
1 parent 5172883 commit 44f3878
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions app/scripts/lib/accounts/BalancesController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,6 @@ describe('BalancesController', () => {
expect(spyPoller).toHaveBeenCalledTimes(1);
});

it('does not create another instances of polling if already started', async () => {
const spyPoller = jest.spyOn(Poller.prototype, 'start');
const { controller } = setupController();
await controller.start();
expect(spyPoller).toHaveBeenCalledTimes(1);
await controller.start();
expect(spyPoller).toHaveBeenCalledTimes(1);
});

it('update balances when calling updateBalances', async () => {
const { controller } = setupController();

Expand Down

0 comments on commit 44f3878

Please sign in to comment.