We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 217f445 commit 3fcaf65Copy full SHA for 3fcaf65
test/nuts/tracking/forceIgnore.nut.ts
@@ -193,9 +193,9 @@ describe('forceignore changes', () => {
193
}).shellOutput.stdout;
194
195
expect(output).to.include('Will Deploy [1] files.');
196
- expect(output).to.include('ApexClass UnIgnoreTest');
+ expect(output).to.match(/ApexClass\s+UnIgnoreTest/);
197
expect(output).to.not.include("These files won't deploy because they're ignored by your .forceignore file.");
198
- expect(output).to.not.include('ApexClass IgnoreTest');
+ expect(output).to.not.match(/ApexClass\s+IgnoreTest/);
199
});
200
201
0 commit comments