update node.js version for CI (#23236)
This commit is contained in:
parent
848e802d20
commit
1d7728bf9d
|
@ -2,7 +2,7 @@ version: 2.1
|
||||||
|
|
||||||
aliases:
|
aliases:
|
||||||
- &docker
|
- &docker
|
||||||
- image: cimg/openjdk:17.0.0-node
|
- image: cimg/openjdk:17.0.2-node
|
||||||
|
|
||||||
- &environment
|
- &environment
|
||||||
TZ: /usr/share/zoneinfo/America/Los_Angeles
|
TZ: /usr/share/zoneinfo/America/Los_Angeles
|
||||||
|
|
|
@ -899,7 +899,7 @@ describe('Shared useSyncExternalStore behavior (shim and built-in)', () => {
|
||||||
store.set({});
|
store.set({});
|
||||||
});
|
});
|
||||||
expect(container.textContent).toEqual(
|
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({});
|
store.set({});
|
||||||
});
|
});
|
||||||
expect(container.textContent).toEqual(
|
expect(container.textContent).toEqual(
|
||||||
"Cannot read property 'trim' of undefined",
|
"Cannot read properties of undefined (reading 'trim')",
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue