Skip to content

Commit

Permalink
fix: test and remove redundent code
Browse files Browse the repository at this point in the history
  • Loading branch information
mradulsf committed Jul 11, 2024
1 parent 34c1f59 commit d5b4fa1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/commands/package/packageVersion.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,7 @@ describe('package:version:*', () => {
];
expect(output).to.have.length.greaterThan(0);
expect(output?.at(0)).to.have.keys(keys);
// @ts-ignore
const codeCoverage = output?.[0]?.CodeCoverage?.toString() || '';
const codeCoverage = output?.[0]?.CodeCoverage || '';
expect(codeCoverage).to.equal('use --verbose for code coverage');
});

Expand Down

0 comments on commit d5b4fa1

Please sign in to comment.