mirror of
https://github.com/meshtastic/web.git
synced 2026-07-31 06:56:28 -04:00
Ran pnpm oxfmt . This should get the web repo aligned so that we can better enforce oxfmt going forward.
15 lines
291 B
TypeScript
15 lines
291 B
TypeScript
import { defineProject } from "vitest/config";
|
|
|
|
export default defineProject({
|
|
test: {
|
|
name: "@meshtastic/sdk-react",
|
|
environment: "jsdom",
|
|
include: [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"tests/**/*.test.ts",
|
|
"tests/**/*.test.tsx",
|
|
],
|
|
},
|
|
});
|