/
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
vizion
/
test
/
functional
/
/usr/local/lib/node_modules/pm2/node_modules/vizion/test/functional
mkdir
upload
Name
Size
Mode
Actions
cliCommand.test.js
627
0644
edit
dl
rm
git.test.js
5703
0644
edit
dl
rm
svn-hg.test.js
1927
0644
edit
dl
rm
Edit:
/usr/local/lib/node_modules/pm2/node_modules/vizion/test/functional/cliCommand.test.js
(627B)
var expect = require('chai').expect; var cliCommand = require("../../lib/cliCommand.js"); describe('Functional: cliCommand', function () { it("ok", function () { var target, folder; if (/^win/.exec(process.platform)) { folder = "C:\\Program Files\\nodejs\\foobar"; target = "cd \"" + folder + "\" && git status -s"; } else { folder = "/etc/node/foobar"; target = "cd '" + folder + "';LC_ALL=en_US.UTF-8 git status -s"; } var result = cliCommand(folder, "git status -s"); expect(target).to.eq(result); }); });
Save
cmd:
run