Fix terminal integration test

This commit is contained in:
Kartik Raj
2023-04-12 03:28:13 +00:00
parent b95214ad39
commit 8c3884bed5

View File

@@ -858,9 +858,9 @@ import { assertNoRpc, poll } from '../utils';
const entries: [string, EnvironmentVariableMutator][] = [];
collection.forEach((v, m) => entries.push([v, m]));
deepStrictEqual(entries, [
['A', { value: '~a2~', type: EnvironmentVariableMutatorType.Replace }],
['B', { value: '~b2~', type: EnvironmentVariableMutatorType.Append }],
['C', { value: '~c2~', type: EnvironmentVariableMutatorType.Prepend }]
['A', { value: '~a2~', type: EnvironmentVariableMutatorType.Replace, scope: undefined, variable: 'A' }],
['B', { value: '~b2~', type: EnvironmentVariableMutatorType.Append, scope: undefined, variable: 'B' }],
['C', { value: '~c2~', type: EnvironmentVariableMutatorType.Prepend, scope: undefined, variable: 'C' }]
]);
});
});