Skip to content

Commit

Permalink
chore: update nuts again
Browse files Browse the repository at this point in the history
  • Loading branch information
shetzel committed Jan 13, 2024
1 parent a2627e2 commit 0ae7f77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/commands/package/packageVersion.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,11 @@ describe('package:version:*', () => {
it('should list the package versions created --verbose (json)', async () => {
const command = `package:version:create:list --status Success --created-last-days 10 -v ${session.hubOrg.username} --json --verbose`;
const output = execCmd<CreateListCommandResult>(command, { ensureExitCode: 0 }).jsonOutput;
const expectedVerboseKeys = [...expectedPVCRkeys, 'VersionName', 'VersionNumber'];
expect(output).to.be.ok;
expect(output?.status).to.equal(0);
expect(output?.result).to.have.length.greaterThan(0);
expect(output?.result[0]).to.have.keys(expectedPVCRkeys);
expect(output?.result[0]).to.have.keys(expectedVerboseKeys);
});
});
describe('package:version:list', () => {
Expand Down

0 comments on commit 0ae7f77

Please sign in to comment.