File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 66</template >
77
88<script setup lang="tsx">
9- import { foo } from ' ./TsImportFile'
9+ import { foo } from ' ./TsImportFile.js '
1010
1111const Bar = () => (
1212 <div class = " bar" >
Original file line number Diff line number Diff line change @@ -14,7 +14,15 @@ export default defineConfig({
1414 } ,
1515 } ,
1616 test : {
17- include : [ './playground/vue/**/*.spec.[tj]s' ] ,
17+ include : [ './playground/ssr-vue/**/*.spec.[tj]s' ] ,
18+ exclude : [
19+ // skip link vite tets at local, it will panic at v8.
20+ '**/node_modules/**' ,
21+ // need to system format
22+ './playground/vue-legacy/**/*.spec.[tj]s' ,
23+ // need to umd format
24+ './playground/vue-lib/**/*.spec.[tj]s' ,
25+ ] ,
1826 setupFiles : [ './playground/vitestSetup.ts' ] ,
1927 globalSetup : [ './playground/vitestGlobalSetup.ts' ] ,
2028 testTimeout : timeout ,
You can’t perform that action at this time.
0 commit comments