UNPKG

test-executor

Version:

Executes test scripts in the specified dirs.

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