Skip to content

Commit

Permalink
Fix format and mistaken test
Browse files Browse the repository at this point in the history
  • Loading branch information
bterlson committed Dec 24, 2024
1 parent c4f4f95 commit d8ee0c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 20 deletions.
7 changes: 2 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@
"console": "internalConsole",
"outputCapture": "std",
"autoAttachChildProcesses": true,
"outFiles": [
"${workspaceFolder}/**/*.(m|c|)js",
"!**/node_modules/**"
],
"outFiles": ["${workspaceFolder}/**/*.(m|c|)js", "!**/node_modules/**"],
"smartStep": true,
"skipFiles": ["<node_internals>/**", "**/node_modules/**"],
"cwd": "${workspaceFolder}"
Expand All @@ -35,7 +32,7 @@
"autoAttachChildProcesses": true,
"env": {
"FORCE_COLOR": "3"
},
}
}
]
}
15 changes: 0 additions & 15 deletions packages/core/test/components/source-file.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,3 @@ it("can change its indent level", () => {
indented
`);
});

it.only("does things", () => {
function DebugMe() {
debug.component.stack();
}

const tree = render(
<Output>
<SourceFile path="hi.txt" filetype="text">
base
<DebugMe />
</SourceFile>
</Output>,
);
});

0 comments on commit d8ee0c9

Please sign in to comment.