Skip to content

Commit

Permalink
CLI is actually much smaller now since many docs are deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
eliangcs committed Oct 23, 2024
1 parent 9f213a7 commit 850cbe6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/smoke-tests/smoke-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ describe('smoke tests - setup will take some time', function () {
const latestVersion = await getPackageLatestVersion(packageName);
const baselineSize = await getPackageSize(packageName, latestVersion);
const newSize = fs.statSync(context.package.path).size;
newSize.should.be.within(baselineSize * 0.7, baselineSize * 1.3);
newSize.should.be.within(baselineSize * 0.5, baselineSize * 1.3);

this.test.title += ` (${baselineSize} -> ${newSize} bytes)`;
});
Expand Down

0 comments on commit 850cbe6

Please sign in to comment.