shelljs/test/env.js
Nate Fischer 1a31356343 refactor: use require instead of import
No change to logic. This swaps over tests to use require() since
everything is currently designed for the commonjs module system.
2025-04-07 22:44:24 -07:00

19 lines
329 B
JavaScript

const test = require('ava');
const shell = require('..');
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);
});