Skyvern/skyvern-frontend/vitest.config.ts
Stanislav Novosad 117b2469e4
Some checks are pending
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Build Skyvern SDK and publish to PyPI / check-version-change (push) Waiting to run
Build Skyvern SDK and publish to PyPI / run-ci (push) Blocked by required conditions
Build Skyvern SDK and publish to PyPI / build-sdk (push) Blocked by required conditions
Refactoring: merge WorkflowParameterEditPanel and WorkflowParameterAddPanel (#3750)
2025-10-23 11:02:41 -06:00

15 lines
299 B
TypeScript

import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react-swc";
import path from "path";
export default defineConfig({
plugins: [react()],
test: {
passWithNoTests: true,
},
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});