Repository URL to install this package:
|
Version:
3.0.0 ▾
|
// test environment
import 'jest'
describe.skip('persistence: environment', () => {
it('should work for window', () => {
const persistence = require('../src')
expect(persistence).toMatchSnapshot()
})
it('should work for server', () => {
const persistence = require('../src')
expect(persistence).toMatchSnapshot()
})
})