Repository URL to install this package:
|
Version:
2.0.2 ▾
|
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...
})
})