Skip to content
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
ebcda6c
test(solvers): add x+ orientation assertion to getAnchoredNetLabelRen…
gcoinstash-cmd Aug 28, 2026
4e183de
style: format test file according to biome rules
gcoinstash-cmd Aug 31, 2026
fd713d4
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Aug 31, 2026
3024dcd
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Aug 31, 2026
57a2032
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Aug 31, 2026
3979ca3
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 1, 2026
ca4e997
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 1, 2026
ed2f82b
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 1, 2026
59572ef
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 2, 2026
fa69d92
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 2, 2026
87c3582
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 2, 2026
5f6ce4e
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 2, 2026
4a779a8
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 2, 2026
be27787
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 3, 2026
106934b
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 3, 2026
280812a
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 3, 2026
f575d54
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 3, 2026
1f0e96f
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 3, 2026
4b58dfc
test(solver): add two-pin terminal stub routing validation test
gcoinstash-cmd Sep 3, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ test("uses the horizontal renderer envelope for x-facing labels", () => {
expect(horizontalBounds.minY).toBeCloseTo(2.9)
expect(horizontalBounds.maxY).toBeCloseTo(3.1)

const horizontalPlusBounds = getAnchoredNetLabelRenderedBounds(
createPlacement({
orientation: "x+",
anchorPoint: { x: 2, y: 3 },
center: { x: 2.21, y: 3 },
}),
)
expect(horizontalPlusBounds.minX).toBeCloseTo(2)
expect(horizontalPlusBounds.maxX).toBeCloseTo(3.2)
expect(horizontalPlusBounds.minY).toBeCloseTo(2.9)
expect(horizontalPlusBounds.maxY).toBeCloseTo(3.1)

const verticalBounds = getAnchoredNetLabelRenderedBounds(
createPlacement({
orientation: "y+",
Expand Down
Loading