Revert "update node.js version for CI (#23236)" (#23239)

This reverts commit 1d7728bf9d.
This commit is contained in:
dan 2022-02-07 03:55:57 +00:00 committed by GitHub
parent 1d7728bf9d
commit cd4eb116cf
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.2-node
- image: cimg/openjdk:17.0.0-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 properties of undefined (reading 'toUpperCase')",
"Cannot read property 'toUpperCase' of undefined",
);
});
@ -935,7 +935,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
store.set({});
});
expect(container.textContent).toEqual(
"Cannot read properties of undefined (reading 'trim')",
"Cannot read property 'trim' of undefined",
);
});
});