UNPKG

akv

Version:

A simple key value store using single json file

28 lines (17 loc) 375 B
/** * Test case for writeToFile. * Runs with mocha. */ 'use strict' const writeToFile = require('../lib/file/write_to_file.js') const assert = require('assert') describe('write-to-file', function () { this.timeout(3000) before(async () => { }) after(async () => { }) it('Write to file', async () => { }) }) /* global describe, before, after, it */