phonegap-facebook-plugin
Version:
The official Facebook plugin for Apache Cordova/PhoneGap
20 lines (12 loc) • 338 B
JavaScript
var shell = require('..');
var assert = require('assert');
shell.config.silent = true;
shell.rm('-rf', 'tmp');
shell.mkdir('tmp');
//
// Valids
//
assert.equal(shell.env['PATH'], process.env['PATH']);
shell.env['SHELLJS_TEST'] = 'hello world';
assert.equal(shell.env['SHELLJS_TEST'], process.env['SHELLJS_TEST']);
shell.exit(123);