Skip to content

Commit

Permalink
remove test.only
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Jul 23, 2024
1 parent f7f417a commit 482dce8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/lib/check-each-pcb-trace-non-overlapping.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { expect, test, describe } from "bun:test"
import { checkEachPcbTraceNonOverlapping } from "lib/check-each-pcb-trace-non-overlapping"
import type { AnySoupElement, PCBTrace, PCBSMTPad } from "@tscircuit/soup"
import { logSoup } from "@tscircuit/log-soup"

describe("checkEachPcbTraceNonOverlapping", () => {
test("should return no errors when traces don't overlap", () => {
Expand All @@ -26,7 +25,7 @@ describe("checkEachPcbTraceNonOverlapping", () => {
expect(checkEachPcbTraceNonOverlapping(soup)).toEqual([])
})

test.only("should return an error when traces overlap", async () => {
test("should return an error when traces overlap", async () => {
const soup: AnySoupElement[] = [
{
type: "pcb_trace",
Expand Down

0 comments on commit 482dce8

Please sign in to comment.