diff --git a/tests/domain/world-settings.test.ts b/tests/domain/world-settings.test.ts index d180565c..aa0ea783 100644 --- a/tests/domain/world-settings.test.ts +++ b/tests/domain/world-settings.test.ts @@ -207,9 +207,8 @@ describe("world settings helpers", () => { y: 1, z: 0.35 }; - const defaults = createDefaultWorldCelestialOrbitAuthoringSettings( - direction - ); + const defaults = + createDefaultWorldCelestialOrbitAuthoringSettings(direction); const derivedSunOrbit = createWorldCelestialOrbitSettingsFromPeakDirection(direction); diff --git a/tests/serialization/scene-document-json.test.ts b/tests/serialization/scene-document-json.test.ts index 8182ba5d..a56ac61a 100644 --- a/tests/serialization/scene-document-json.test.ts +++ b/tests/serialization/scene-document-json.test.ts @@ -232,10 +232,9 @@ describe("scene document JSON", () => { ); expect(migratedDocument.version).toBe(SCENE_DOCUMENT_VERSION); - expect(migratedDocument.world.celestialOrbits.sun.azimuthDegrees).toBeCloseTo( - 153.4349, - 3 - ); + expect( + migratedDocument.world.celestialOrbits.sun.azimuthDegrees + ).toBeCloseTo(153.4349, 3); expect( migratedDocument.world.celestialOrbits.sun.peakAltitudeDegrees ).toBeGreaterThan(60);