diff --git a/apps/fabro-web/app/routes/run-detail.test.ts b/apps/fabro-web/app/routes/run-detail.test.ts index a68b4a678..f0782fd97 100644 --- a/apps/fabro-web/app/routes/run-detail.test.ts +++ b/apps/fabro-web/app/routes/run-detail.test.ts @@ -382,7 +382,7 @@ describe("RunDetail full-height child routes", () => { const outletWrappers = renderer.root.findAll( (node) => node.type === "div" && - hasClasses(node.props.className, ["pt-3", "min-h-0", "flex-1"]), + hasClasses(node.props.className, ["min-h-0", "flex-1", "flex-col"]), ); expect(outletWrappers).toHaveLength(1); }); @@ -540,11 +540,8 @@ describe("RunDetail full-height child routes", () => { const outletWrappers = renderer.root.findAll( (node) => node.type === "div" && - hasClasses(node.props.className, [ - "pt-3", - "pb-[var(--fabro-interview-dock-clearance)]", - ]), + hasClasses(node.props.className, ["pb-[var(--fabro-interview-dock-clearance)]"]), ); expect(outletWrappers).toHaveLength(1); }); -}); \ No newline at end of file +});