Meta: Upgrade prettier to version 3.6.2

This version is installed by default nowadays and has slight differences
from 3.3.3.
This commit is contained in:
Timothy Flynn 2025-10-31 12:00:36 -04:00 committed by Tim Flynn
parent 019c529c07
commit 583164e412
Notes: github-actions[bot] 2025-10-31 23:56:44 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ test("currying", () => {
test("with comma operator", () => {
let foo, bar;
(foo = bar), baz => {};
((foo = bar), baz => {});
expect(foo).toBe(undefined);
expect(bar).toBe(undefined);
});