react-native-async-storage
Version:
An abstraction on top of react-native's AsyncStorage
21 lines (13 loc) • 334 B
JavaScript
;
jest.dontMock('../src/model');
jest.dontMock('../src/storage');
jest.setMock('react-native', {});
var Storage = require('../src/storage');
describe('Storage', function() {
describe('using method', function() {
// TODO: add tests
});
describe('save method', function() {
// TODO: add tests
});
});