File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
packages/nx-plugin/src/executors/cli Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ describe('runAutorunExecutor', () => {
2525 const loggerInfoSpy = vi . spyOn ( logger , 'info' ) ;
2626 const loggerWarnSpy = vi . spyOn ( logger , 'warn' ) ;
2727
28+ /* eslint-disable functional/immutable-data, @typescript-eslint/no-dynamic-delete */
2829 beforeAll ( ( ) => {
2930 Object . entries ( process . env )
3031 . filter ( ( [ k ] ) => k . startsWith ( 'CP_' ) )
@@ -43,6 +44,7 @@ describe('runAutorunExecutor', () => {
4344 afterAll ( ( ) => {
4445 Object . entries ( processEnvCP ) . forEach ( ( [ k , v ] ) => ( process . env [ k ] = v ) ) ;
4546 } ) ;
47+ /* eslint-enable functional/immutable-data, @typescript-eslint/no-dynamic-delete */
4648
4749 it ( 'should call execSync with return result' , async ( ) => {
4850 const output = await runAutorunExecutor ( { } , executorContext ( 'utils' ) ) ;
You can’t perform that action at this time.
0 commit comments