Files
Tiệp Sunflower aa9c76c82f selenium
2023-03-06 14:23:39 +07:00

23 lines
429 B
JavaScript

var test = require('tape').test;
var exeq = require('..');
test('cd change cwd', function(t) {
var tempDirName = '__temp-for-tests';
exeq(
'mkdir ' + tempDirName,
'cd ' + tempDirName,
'pwd',
'cd ..',
'pwd',
'rm -rf ' + tempDirName
).then(function(results) {
t.ok(results[2].stdout.indexOf(tempDirName) > -1);
t.notOk(results[4].stdout.indexOf(tempDirName) > -1);
t.end();
});
});