File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -811,15 +811,11 @@ describe('Dev Commands', () => {
811
811
// Second run should be faster (allow more variance for CI environments)
812
812
const expectedMultiplier = process . env . CI === 'true' || process . env . GITHUB_ACTIONS === 'true' ? 2.0 : 1.5
813
813
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
-
817
814
// In CI environments, sometimes the second run might be slower due to system load
818
815
// So we'll be more lenient and just ensure both runs complete successfully
819
816
if ( process . env . CI === 'true' || process . env . GITHUB_ACTIONS === 'true' ) {
820
817
// In CI, just ensure both runs complete and the second run doesn't take more than 3x the first
821
818
expect ( duration2 ) . toBeLessThan ( duration1 * 3.0 )
822
- console . log ( 'CI environment detected - using relaxed timing constraints' )
823
819
}
824
820
else {
825
821
// In local environment, expect the second run to be faster
You can’t perform that action at this time.
0 commit comments