Squash Odysseus development history

This commit is contained in:
pewdiepie-archdaemon
2026-09-11 06:04:19 +00:00
parent e5c99a5eee
commit 6ee6502010
2050 changed files with 538359 additions and 57745 deletions
+14
View File
@@ -0,0 +1,14 @@
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
def test_blank_project_records_refresh_metadata_after_size_is_selected():
source = (ROOT / "static/js/galleryEditor.js").read_text()
start = source.index("const _finishBlank = (w, h) => {")
end = source.index(" };", start)
block = source[start:end]
assert "state.activeLayerId = editLayer.id;" in block
assert "_writeActiveEditorSession();" in block