Skip to content

Commit

Permalink
chore: filter when filename==='' to get server-only response
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieRuemmele committed Apr 3, 2024
1 parent dd224bc commit c54a696
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/utils/deployResponses.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ export const getDeployResult = (
const successes = response.details.componentSuccesses;
fileProps = ensureArray(successes);
return fileProps
.filter((p) => p.fileName !== 'package.xml')
.filter((p) => p.fileName !== 'package.xml' && p.fileName !== '')
.map((comp) => ({
fullName: comp.fullName,
filePath: comp.fileName,
Expand Down

0 comments on commit c54a696

Please sign in to comment.