Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/tests/generic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ test.describe('PMM Client "Generic" CLI tests', { tag: '@generic' }, async () =>
const zipName = output.getStdOutLines().find((item) => item.includes('.zip created.'))!
.split(' ').at(0) ?? '';
const filesInZip = await readZipFile(zipName);
expect(filesInZip, `Verify there are 47 files in ${zipName}.\n ${JSON.stringify(filesInZip, null, 2)}`).toHaveLength(47);
expect(filesInZip, `Verify there are 48 files in ${zipName}.\n ${JSON.stringify(filesInZip, null, 2)}`).toHaveLength(48);
});

/**
Expand Down
Loading