Skip to content

Commit

Permalink
test: add type tests
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed May 30, 2023
1 parent 182609a commit 9de62b6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions test/fixtures/nuxt-vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,19 @@
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"test:unit": "vitest",
"test:dev": "NUXT_VITEST_DEV_TEST=true nuxt dev",
"test": "pnpm test:unit --run && pnpm test:dev"
"test:unit": "vitest",
"test:types": "nuxi prepare && vue-tsc --noEmit",
"test": "pnpm test:unit --run && pnpm test:dev && pnpm test:types"
},
"devDependencies": {
"@nuxt/devtools": "0.5.5",
"nuxt": "3.5.1",
"nuxt-vitest": "0.8.0",
"typescript": "^5.0.4",
"vitest": "0.30.1",
"vitest-environment-nuxt": "0.8.0"
"vitest-environment-nuxt": "0.8.0",
"vue-tsc": "^1.6.5"
},
"version": "0.8.0"
}

0 comments on commit 9de62b6

Please sign in to comment.