mirror of
https://github.com/shelljs/shelljs.git
synced 2025-12-08 20:35:51 +00:00
* Move ava-test/ directory to test/ * Remove unnecessary run-tests.js script * Run only ava during npm test script
19 lines
319 B
JavaScript
19 lines
319 B
JavaScript
import test from 'ava';
|
|
|
|
import shell from '..';
|
|
|
|
shell.config.silent = true;
|
|
|
|
//
|
|
// Valids
|
|
//
|
|
|
|
test('existing variables', t => {
|
|
t.is(shell.env.PATH, process.env.PATH);
|
|
});
|
|
|
|
test('variables are exported', t => {
|
|
shell.env.SHELLJS_TEST = 'hello world';
|
|
t.is(shell.env.SHELLJS_TEST, process.env.SHELLJS_TEST);
|
|
});
|