Skip to content

Commit b538dc1

Browse files
sunderlszhengjitf
authored andcommitted
update node.js version for CI (facebook#23236)
1 parent 2d595b0 commit b538dc1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2.1
22

33
aliases:
44
- &docker
5-
- image: cimg/openjdk:17.0.0-node
5+
- image: cimg/openjdk:17.0.2-node
66

77
- &environment
88
TZ: /usr/share/zoneinfo/America/Los_Angeles

packages/use-sync-external-store/src/__tests__/useSyncExternalStoreShared-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
899899
store.set({});
900900
});
901901
expect(container.textContent).toEqual(
902-
"Cannot read property 'toUpperCase' of undefined",
902+
"Cannot read properties of undefined (reading 'toUpperCase')",
903903
);
904904
});
905905

@@ -935,7 +935,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
935935
store.set({});
936936
});
937937
expect(container.textContent).toEqual(
938-
"Cannot read property 'trim' of undefined",
938+
"Cannot read properties of undefined (reading 'trim')",
939939
);
940940
});
941941
});

0 commit comments

Comments
 (0)