@@ -850,17 +850,17 @@ import { assertNoRpc, poll } from '../utils';
850
850
collection . prepend ( 'C' , '~c2~' ) ;
851
851
852
852
// Verify get
853
- deepStrictEqual ( collection . get ( 'A' ) , { value : '~a2~' , type : EnvironmentVariableMutatorType . Replace , scope : undefined , options : undefined } ) ;
854
- deepStrictEqual ( collection . get ( 'B' ) , { value : '~b2~' , type : EnvironmentVariableMutatorType . Append , scope : undefined , options : undefined } ) ;
855
- deepStrictEqual ( collection . get ( 'C' ) , { value : '~c2~' , type : EnvironmentVariableMutatorType . Prepend , scope : undefined , options : undefined } ) ;
853
+ deepStrictEqual ( collection . get ( 'A' ) , { value : '~a2~' , type : EnvironmentVariableMutatorType . Replace , scope : undefined , options : { } } ) ;
854
+ deepStrictEqual ( collection . get ( 'B' ) , { value : '~b2~' , type : EnvironmentVariableMutatorType . Append , scope : undefined , options : { } } ) ;
855
+ deepStrictEqual ( collection . get ( 'C' ) , { value : '~c2~' , type : EnvironmentVariableMutatorType . Prepend , scope : undefined , options : { } } ) ;
856
856
857
857
// Verify forEach
858
858
const entries : [ string , EnvironmentVariableMutator ] [ ] = [ ] ;
859
859
collection . forEach ( ( v , m ) => entries . push ( [ v , m ] ) ) ;
860
860
deepStrictEqual ( entries , [
861
- [ 'A' , { value : '~a2~' , type : EnvironmentVariableMutatorType . Replace , scope : undefined , options : undefined } ] ,
862
- [ 'B' , { value : '~b2~' , type : EnvironmentVariableMutatorType . Append , scope : undefined , options : undefined } ] ,
863
- [ 'C' , { value : '~c2~' , type : EnvironmentVariableMutatorType . Prepend , scope : undefined , options : undefined } ]
861
+ [ 'A' , { value : '~a2~' , type : EnvironmentVariableMutatorType . Replace , scope : undefined , options : { } } ] ,
862
+ [ 'B' , { value : '~b2~' , type : EnvironmentVariableMutatorType . Append , scope : undefined , options : { } } ] ,
863
+ [ 'C' , { value : '~c2~' , type : EnvironmentVariableMutatorType . Prepend , scope : undefined , options : { } } ]
864
864
] ) ;
865
865
} ) ;
866
866
} ) ;
0 commit comments