UNPKG

test-executor

Version:

Executes test scripts in the specified dirs.

17 lines (12 loc) 262 B
'use strict' const AsyncObject = require('@cuties/cutie').AsyncObject // Represented result is json class ParsedJSON extends AsyncObject { constructor (string) { super(string) } syncCall () { return JSON.parse } } module.exports = ParsedJSON