From a29ddd740fd36f1827c210fd69eb01bb7ca5abf0 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Fri, 18 Oct 2024 09:00:22 -0600 Subject: [PATCH] test: force ignore nut --- test/nuts/tracking/forceIgnore.nut.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test/nuts/tracking/forceIgnore.nut.ts b/test/nuts/tracking/forceIgnore.nut.ts index dae599e4..a9620a54 100644 --- a/test/nuts/tracking/forceIgnore.nut.ts +++ b/test/nuts/tracking/forceIgnore.nut.ts @@ -208,11 +208,13 @@ describe('forceignore changes', () => { const output = execCmd(`project:deploy:preview -d ${classdir} --concise`, { ensureExitCode: 0, + env: { ...process.env, SF_NO_TABLE_STYLE: 'true' }, }).shellOutput.stdout; + expect(output).to.include('Will Deploy [1] files.'); - expect(output).to.include('ApexClass UnIgnoreTest'); + expect(output).to.include('ApexClass UnIgnoreTest'); expect(output).to.not.include("These files won't deploy because they're ignored by your .forceignore file."); - expect(output).to.not.include('ApexClass IgnoreTest'); + expect(output).to.not.include('ApexClass IgnoreTest'); }); }); });