Skip to content

Commit

Permalink
Merge branch 'sm/dep-reduction' into sm/remove-jsforce
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Nov 6, 2023
2 parents 5671d09 + a68bc0c commit 4abe1d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/nuts/tracking/lwc.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describe('lwc', () => {
const bundleMembers = result?.filter((r) => r.fullName === 'heroDetails');
expect(bundleMembers).to.have.length(3);
expect(
bundleMembers?.every((r) => r.state.toString() === 'Deleted'),
bundleMembers?.every((r) => r.state === ComponentStatus['Deleted']),
JSON.stringify(bundleMembers, undefined, 2)
).to.be.true;
});
Expand Down

0 comments on commit 4abe1d1

Please sign in to comment.