microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-sym-node-declarations-undefined

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/html-program-viewer/test/emitter.test.ts

8lines · modecode

1import { it } from "vitest";
2import { Tester } from "./test-host.js";
3
4const EmitterTester = Tester.emit("@typespec/html-program-viewer");
5
6it("runs emitter", async () => {
7 await EmitterTester.compile(`op foo(): string;`);
8});
9