Skip to content

Commit

Permalink
test: correct componetStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Nov 7, 2023
1 parent 313919c commit 4788a73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/nuts/trackingCommands/lwc.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('lwc', () => {
const bundleMembers = result.filter((r) => r.fullName === 'heroDetails');
expect(bundleMembers).to.have.length(4);
expect(bundleMembers.filter((r) => r.state === ComponentStatus.Deleted)).to.have.length(1);
expect(bundleMembers.filter((r) => r.state === ComponentStatus.Failed)).to.have.length(3);
expect(bundleMembers.filter((r) => r.state === ComponentStatus.Changed)).to.have.length(3);
});

it('sees no local changes', () => {
Expand Down

0 comments on commit 4788a73

Please sign in to comment.