Closed tscircuitbot closed 4 months ago
Replace vitest
with ava
in routing-disabled.test.ts
Import changes
expect
and test
from vitest
with test
from ava
Assertion changes
t
from ava
instead of expect
expect(schematicTraces.length).toBeGreaterThan(0)
with t.true(schematicTraces.length > 0)
expect(sourceTraces.length).toBeGreaterThan(0)
with t.true(sourceTraces.length > 0)
expect(pcbTraces.length).toBe(0)
with t.is(pcbTraces.length, 0)
expect(pcbVias.length).toBe(0)
with t.is(pcbVias.length, 0)
For more details, open the Copilot Workspace session.
This pull request addresses issue #83.
Changes were made automatically by aider. Please review the changes carefully before merging.