Skip to content

Commit

Permalink
update node.js version for CI (#23236)
Browse files Browse the repository at this point in the history
  • Loading branch information
sunderls committed Feb 7, 2022
1 parent 848e802 commit 1d7728b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.1

aliases:
- &docker
- image: cimg/openjdk:17.0.0-node
- image: cimg/openjdk:17.0.2-node

- &environment
TZ: /usr/share/zoneinfo/America/Los_Angeles
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
store.set({});
});
expect(container.textContent).toEqual(
"Cannot read property 'toUpperCase' of undefined",
"Cannot read properties of undefined (reading 'toUpperCase')",
);
});

Expand Down Expand Up @@ -935,7 +935,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
store.set({});
});
expect(container.textContent).toEqual(
"Cannot read property 'trim' of undefined",
"Cannot read properties of undefined (reading 'trim')",
);
});
});
Expand Down

0 comments on commit 1d7728b

Please sign in to comment.