microsoft/typespec

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/fix-html-program-viewer-crash

Branches

Tags

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

Clone

HTTPS

Download ZIP

packages/emitter-framework/vitest.config.ts

15lines · modecode

1import alloyPlugin from "@alloy-js/rollup-plugin";
2import { defineConfig, mergeConfig } from "vitest/config";
3import { defaultTypeSpecVitestConfig } from "../../vitest.config.js";
4
5export default mergeConfig(
6 defaultTypeSpecVitestConfig,
7 defineConfig({
8 test: {
9 include: ["src/**/*.test.ts", "src/**/*.test.tsx", "test/**/*.test.ts", "test/**/*.test.tsx"],
10 passWithNoTests: true,
11 setupFiles: ["./test/vitest.setup.ts"],
12 },
13 plugins: [alloyPlugin()],
14 }),
15);
16