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__ / server.test.ts
Size: Mime:
import 'jest'
import * as fs from 'fs'

describe.skip('persistance: server', () => {
  it('should work for the server environment', () => {
    // ensure the file is saved
    const exists = fs.existsSync('.tmp/ls.json')
    expect(exists).toEqual(true)

    // @todo customize the file location
    // @todo validate the file loading functionality
    // @todo load the files async...
  })
})