Skip to content

Commit

Permalink
remove first not necessary test
Browse files Browse the repository at this point in the history
  • Loading branch information
tommasini committed Jul 19, 2023
1 parent a9005ff commit 553f94c
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions app/store/migrations.test.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
import { migrations, version } from './migrations';

describe('Redux Persist Migrations', () => {
it('should apply migration number 19 and return state', () => {
let currentState = {
recents: '0x1',
};

const migration = migrations[19];

currentState = migration(currentState);

expect(currentState).toBeDefined();
expect(currentState.recents).toBeUndefined();
});
it('should apply last migration version and return state', () => {
let currentState = {
recents: '0x1',
Expand Down

0 comments on commit 553f94c

Please sign in to comment.