portapack 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -282,8 +282,8 @@ describe('CLI Runner Logic', () => {
282
282
  expect(result.exitCode).toBe(0);
283
283
  // Standard output should still show success
284
284
  expect(result.stdout).toContain('✅ Packed: index.html → output.html');
285
+ expect(result.stderr).toMatch(/⚠️\s+1\s+warning\(s\):/);
285
286
  // Warnings should be logged to stderr
286
- expect(result.stderr).toContain('⚠️  1 warning(s):');
287
287
  expect(result.stderr).toContain(`- ${warningMessage}`);
288
288
  });
289
289