UNPKG

akv

Version:

A simple key value store using single json file

28 lines (17 loc) 380 B
/** * Test case for readFromFile. * Runs with mocha. */ 'use strict' const readFromFile = require('../lib/file/read_from_file.js') const assert = require('assert') describe('read-from-file', function () { this.timeout(3000) before(async () => { }) after(async () => { }) it('Read from file', async () => { }) }) /* global describe, before, after, it */