Skip to content

Commit

Permalink
tests: check fetchDebugInfo output
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommypop2 committed Jan 24, 2025
1 parent bf23a8d commit 55bff9b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/full-solid/tests/debuginfo.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { it } from "vitest";
import { expect, it } from "vitest";
import { fetchDebugInfo, prettyPrint } from "../src/debug";

it("Runs", async () => {
console.log(prettyPrint(await fetchDebugInfo()));
const output = prettyPrint(await fetchDebugInfo());

expect(output).contains("Runtime", "System");
});

0 comments on commit 55bff9b

Please sign in to comment.