import React from "react" import test from "ava" import { getTestFixture } from "./fixtures/get-test-fixture" import type { SchematicComponent } from "@tscircuit/builder" import { layout } from "@tscircuit/layout" test.skip("render auto layout", async (t) => { const { render, logSoup } = await getTestFixture(t) const soup = await render( ) await logSoup(soup) const components = soup.filter( (s): s is SchematicComponent => s.type === "schematic_component" ) t.falsy(components.every((c) => c.center.x === 0)) })