Skip to content

Commit

Permalink
Add some unit tests for globals
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmyersdev committed Dec 27, 2023
1 parent 0b4e349 commit 6af5d5a
Show file tree
Hide file tree
Showing 5 changed files with 580 additions and 2 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,15 @@
"build:types": "run-s typecheck",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "run-s test:build",
"test": "run-p test:build test:unit",
"test:build": "run-p test:build:*",
"test:build:react": "pnpm -C ./examples/react run build",
"test:build:vanilla": "pnpm -C ./examples/vanilla run build",
"test:build:vue": "pnpm -C ./examples/vue run build",
"test:dev:react": "pnpm -C ./examples/react run dev",
"test:dev:vanilla": "pnpm -C ./examples/vanilla run dev",
"test:dev:vue": "pnpm -C ./examples/vue run dev",
"test:unit": "vitest run --dir ./test",
"typecheck": "run-p typecheck:*",
"typecheck:core": "tsc",
"typecheck:react": "pnpm -C ./examples/react run typecheck",
Expand Down Expand Up @@ -109,7 +110,8 @@
"vite-node": "^0.34.6",
"vite-plugin-externalize-deps": "^0.1.5",
"vite-plugin-inspect": "^0.7.42",
"vite-plugin-node-polyfills": "workspace:*"
"vite-plugin-node-polyfills": "workspace:*",
"vitest": "^1.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
Loading

0 comments on commit 6af5d5a

Please sign in to comment.