Merge pull request #188982 from microsoft/kartik/detailed-tahr

Fix for each in scope env collection
This commit is contained in:
Kartik Raj
2023-07-26 14:32:34 -07:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -936,6 +936,7 @@ import { assertNoRpc, poll } from '../utils';
{ value: 'scoped~b2~', type: EnvironmentVariableMutatorType.Append, options: defaultOptions },
{ value: 'scoped~c2~', type: EnvironmentVariableMutatorType.Prepend, options: defaultOptions }
]);
deepStrictEqual(entries.map(v => v[0]), ['A', 'B', 'C']);
});
});
});