Skip to content

Commit dfbe7d8

Browse files
committed
Remove unnecessary test skip in IDB
1 parent 905afd0 commit dfbe7d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/storage/providers/IDBKeyvalProviderTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ describe('IDBKeyValProvider', () => {
6767
expect(await IDB.get(ONYXKEYS.TEST_KEY, IDBKeyValProvider.store)).toEqual('value');
6868
});
6969

70-
it.skip('should remove the key when passing null', async () => {
70+
it('should remove the key when passing null', async () => {
7171
await IDBKeyValProvider.setItem(ONYXKEYS.TEST_KEY, 'value');
7272
expect(await IDB.get(ONYXKEYS.TEST_KEY, IDBKeyValProvider.store)).toEqual('value');
7373

0 commit comments

Comments
 (0)