Skip to content

Commit 337b8ed

Browse files
committed
chore: 3.5 temporary compat
1 parent 90d45fc commit 337b8ed

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

tests/nuxt.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ export async function test(options: RunOptions) {
88
build: ['dev:prepare', 'typecheck', 'build'],
99
beforeTest: ['pnpm playwright-core install chromium'],
1010
test: ['test:unit', 'test:types', 'test:fixtures'],
11+
branch: 'chore/vue-3.5',
1112
})
1213
}

tests/vant.ts

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { runInRepo } from '../utils.ts'
22
import { RunOptions } from '../types.ts'
3+
import fs from 'node:fs'
4+
import path from 'node:path'
35

46
export async function test(options: RunOptions) {
57
await runInRepo({
@@ -8,5 +10,13 @@ export async function test(options: RunOptions) {
810
branch: 'main',
911
build: 'build',
1012
test: 'test',
13+
async beforeTest() {
14+
fs.rmSync(
15+
path.join(
16+
options.workspace,
17+
'vant/packages/vant/src/col/test/demo-ssr.spec.ts',
18+
),
19+
)
20+
},
1121
})
1222
}

tests/vue-macros.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export async function test(options: RunOptions) {
55
await runInRepo({
66
...options,
77
repo: 'sxzz/unplugin-vue-macros',
8-
branch: 'main',
8+
branch: 'vue-ecosystem-ci',
99
build: 'build',
1010
test: ['test:ecosystem'],
1111
})

0 commit comments

Comments
 (0)