update node.js version for CI (#23236)

This commit is contained in:
sunderls 2022-02-07 01:10:37 +00:00 committed by GitHub
parent 848e802d20
commit 1d7728bf9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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')",
);
});
@ -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')",
);
});
});