Skip to content

Commit f0170b7

Browse files
committed
chore: wip
1 parent 76921fc commit f0170b7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/launchpad/test/dev.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -811,15 +811,11 @@ describe('Dev Commands', () => {
811811
// Second run should be faster (allow more variance for CI environments)
812812
const expectedMultiplier = process.env.CI === 'true' || process.env.GITHUB_ACTIONS === 'true' ? 2.0 : 1.5
813813

814-
// Log timing information for debugging
815-
console.log(`Performance test timing: first run=${duration1}ms, second run=${duration2}ms, expected max=${duration1 * expectedMultiplier}ms`)
816-
817814
// In CI environments, sometimes the second run might be slower due to system load
818815
// So we'll be more lenient and just ensure both runs complete successfully
819816
if (process.env.CI === 'true' || process.env.GITHUB_ACTIONS === 'true') {
820817
// In CI, just ensure both runs complete and the second run doesn't take more than 3x the first
821818
expect(duration2).toBeLessThan(duration1 * 3.0)
822-
console.log('CI environment detected - using relaxed timing constraints')
823819
}
824820
else {
825821
// In local environment, expect the second run to be faster

0 commit comments

Comments
 (0)