UNPKG

fmtjson

Version:
19 lines (14 loc) 284 B
/** * Test for index.js * Runs with mocha. */ 'use strict' const index = require('../lib/index.js') const assert = require('assert') describe('index', () => { it('Eval properties.', (done) => { assert.ok(index) done() }) }) /* global describe, before, after, it */