blob: 2492946a0c0c3dcbfd6b9c70a1d0f0a8b8a54c31 [file] [log] [blame]
'use strict';
var startSimulator = require('../');
// Start any simulator, in detached and verbose mode
startSimulator({
detached: true,
verbose: true
}).then(function(results) {
console.log('Started simulator in detached mode, port = ' + results.port);
console.log(results);
}, function(err) {
console.error('Error starting simulator', err);
});