UNPKG

dynatrace-cordova-outsystems-plugin

Version:

This plugin gives you the ability to use the Dynatrace instrumentation in your hybrid application (Cordova, Ionic, ..). It uses the Mobile Agent, the JavaScript Agent and the Javascript Bridge. The Mobile Agent will give you all device specific values con

14 lines (12 loc) 466 B
// if running on older node, ensure that es6-shim is loaded first if (/^v0.10/.test(process.version)) { require('es6-shim'); } var assert= require('../assert'); var cp = require('../child_process'); describe('child_process module', function() { it ('execFile(true)', function() { return cp.execFile('true').promise.then(function(result) { assert.equal(result.stdout, ''); assert.equal(result.stderr, ''); }); }); });