Skip to content

Commit 1d7728b

Browse files
authored
update node.js version for CI (facebook#23236)
1 parent 848e802 commit 1d7728b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.circleci/config.yml

+1-1
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

+2-2
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)