File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ async function runCaseInWorker(type, props) {
6464
6565// Download fixtures.
6666// Save in `target` directory, same as where benchmarks store them.
67- const benchFixtureUrls = [
67+ let benchFixtureUrls = [
6868 // TypeScript syntax (2.81MB)
6969 'https://cdn.jsdelivr.net/gh/microsoft/TypeScript@v5.3.3/src/compiler/checker.ts' ,
7070 // Real world app tsx (1.0M)
@@ -80,7 +80,7 @@ const benchFixtureUrls = [
8080// `antd.js` tests sometimes take longer than 5 secs on CI, so skip that fixture in CI.
8181// Tried setting `{ timeout: 10_000 }` option, but it didn't work for some reason.
8282// TODO: Get longer timeout working and re-enable these tests in CI.
83- if ( process . env . CI ) benchFixtureUrls . pop ( ) ;
83+ if ( process . env . CI ) benchFixtureUrls = benchFixtureUrls . filter ( url => ! url . endsWith ( '/antd.js' ) ) ;
8484
8585await mkdir ( TARGET_DIR_PATH , { recursive : true } ) ;
8686
You can’t perform that action at this time.
0 commit comments