Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
[ghstack-poisoned]
  • Loading branch information
poteto committed Jun 24, 2024
1 parent 8f9c026 commit 06a526c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 20 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/runtime_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,8 @@ jobs:
- name: Restore archived build
uses: actions/download-artifact@v4
with:
path: build
merge-multiple: true
path: build-temp
- name: Display structure of build
run: ls -R build
- run: yarn test --build ${{ matrix.test_params }} --ci=github
# - run: yarn test --build ${{ matrix.test_params }} --ci=github

Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ describe('StoreStressConcurrent', () => {
let store;
let print;

jest.setTimeout(15000);

beforeEach(() => {
global.IS_REACT_ACT_ENVIRONMENT = true;

Expand Down Expand Up @@ -829,8 +831,6 @@ describe('StoreStressConcurrent', () => {

// @reactVersion >= 18.0
it('should handle a stress test for Suspense without type change (Concurrent Mode)', async () => {
jest.setTimeout(15000);

const A = () => 'a';
const B = () => 'b';
const C = () => 'c';
Expand Down
16 changes: 1 addition & 15 deletions packages/shared/ReactVersion.js
Original file line number Diff line number Diff line change
@@ -1,15 +1 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

// TODO: this is special because it gets imported during build.
//
// It exists as a placeholder so that DevTools can support work tag changes between releases.
// When we next publish a release, update the matching TODO in backend/renderer.js
// TODO: This module is used both by the release scripts and to expose a version
// at runtime. We should instead inject the version number as part of the build
// process, and use the ReactVersions.js module as the single source of truth.
export default '19.0.0';
export default '19.0.0-rc-3a600d54b3-20240624';

0 comments on commit 06a526c

Please sign in to comment.