Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/persistence / __tests__ / environment.test.ts
Size: Mime:
// 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()
  })
})