Skip to content

Commit 00908be

Browse files
authored
[ci] Increase DevTools test shards and bump timeout (#35459)
[ci] Increase DevTools test shards and bump timeout - Increase DevTools test shards from 3 to 5 - Bump timeout to 20s --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35459). * #35458 * __->__ #35459
1 parent 0e18014 commit 00908be

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/runtime_build_and_test.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,9 +454,11 @@ jobs:
454454
fail-fast: false
455455
matrix:
456456
shard:
457-
- 1/3
458-
- 2/3
459-
- 3/3
457+
- 1/5
458+
- 2/5
459+
- 3/5
460+
- 4/5
461+
- 5/5
460462
runs-on: ubuntu-latest
461463
steps:
462464
- uses: actions/checkout@v4

packages/react-devtools-shared/src/__tests__/profilerContext-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ describe('ProfilerContext', () => {
654654
expect(store.profilerStore.isProfilingBasedOnUserInput).toBe(false);
655655

656656
document.body.removeChild(profilerContainer);
657-
});
657+
}, 20000);
658658

659659
it('should navigate between commits when the keyboard shortcut is pressed', async () => {
660660
const Parent = () => <Child />;

0 commit comments

Comments
 (0)