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 6
6
</template >
7
7
8
8
<script setup lang="tsx">
9
- import { foo } from ' ./TsImportFile'
9
+ import { foo } from ' ./TsImportFile.js '
10
10
11
11
const Bar = () => (
12
12
<div class = " bar" >
Original file line number Diff line number Diff line change @@ -14,7 +14,15 @@ export default defineConfig({
14
14
} ,
15
15
} ,
16
16
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
+ ] ,
18
26
setupFiles : [ './playground/vitestSetup.ts' ] ,
19
27
globalSetup : [ './playground/vitestGlobalSetup.ts' ] ,
20
28
testTimeout : timeout ,
You can’t perform that action at this time.
0 commit comments