shelljs/ava-test/env.js
2016-11-24 03:06:33 -08:00

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);
});