Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into sm/dep-reduction
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Nov 6, 2023
2 parents 95828cf + 919e03a commit a68bc0c
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 a68bc0c

Please sign in to comment.