Include env.shell in api tests

This commit is contained in:
Daniel Imms
2019-07-07 09:57:58 -07:00
parent 931b27d834
commit 4683c39346

View File

@@ -14,6 +14,7 @@ suite('env-namespace', () => {
assert.equal(typeof env.appName, 'string');
assert.equal(typeof env.machineId, 'string');
assert.equal(typeof env.sessionId, 'string');
assert.equal(typeof env.shell, 'string');
});
test('env is readonly', function () {
@@ -22,6 +23,7 @@ suite('env-namespace', () => {
assert.throws(() => (env as any).appName = '234');
assert.throws(() => (env as any).machineId = '234');
assert.throws(() => (env as any).sessionId = '234');
assert.throws(() => (env as any).shell = '234');
});
test('env.remoteName', function () {