test(e2e): test block column overflowing

Add a test-case for 939da082b (Fix 6633, 2025-06-28), that checks
whether overflowing blocks render correctly.
This commit is contained in:
Alois Klink
2025-07-29 15:27:10 +09:00
parent 939da082b2
commit e073c80019

View File

@@ -384,4 +384,17 @@ describe('Block diagram', () => {
{}
);
});
it('BL30: block should overflow if too wide for columns', () => {
imgSnapshotTest(
`block-beta
columns 2
fit:2
overflow:3
short:1
also_overflow:2
`,
{}
);
});
});