Skip to content

Commit 7cf9479

Browse files
committed
fix: wip
1 parent 3e32e37 commit 7cf9479

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/nx-plugin/src/executors/cli/executor.unit.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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'));

0 commit comments

Comments
 (0)