auto-git:

[change] tests/serialization/scene-document-json.test.ts
This commit is contained in:
2026-04-22 15:28:59 +02:00
parent 0ddf5fc603
commit dd2228eab2

View File

@@ -103,6 +103,33 @@ describe("scene document JSON", () => {
);
});
it("migrates v70 scene documents by defaulting shader sky settings from the authored day background", () => {
const document = createEmptySceneDocument({
name: "Legacy Shader Sky Scene"
});
document.world.background = {
mode: "verticalGradient",
topColorHex: "#335577",
bottomColorHex: "#aaccee"
};
const migratedDocument = parseSceneDocumentJson(
JSON.stringify({
...document,
version: CELESTIAL_BODY_OVERLAY_SCENE_DOCUMENT_VERSION,
world: {
...document.world,
shaderSky: undefined
}
})
);
expect(migratedDocument.version).toBe(SCENE_DOCUMENT_VERSION);
expect(migratedDocument.world.background).toEqual(document.world.background);
expect(migratedDocument.world.shaderSky.dayTopColorHex).toBe("#335577");
expect(migratedDocument.world.shaderSky.dayBottomColorHex).toBe("#aaccee");
});
it("migrates pre-paint terrain documents by defaulting terrain layer data", () => {
const legacyTerrainDocument = {
...createEmptySceneDocument({