Skip to content

Commit

Permalink
temporarily remove vant offending test case
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Aug 15, 2024
1 parent f95673d commit c80eba2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/vant.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { runInRepo } from '../utils.ts'
import { RunOptions } from '../types.ts'
import fs from 'node:fs'
import path from 'node:path'

export async function test(options: RunOptions) {
await runInRepo({
Expand All @@ -8,5 +10,13 @@ export async function test(options: RunOptions) {
branch: 'main',
build: 'build',
test: 'test',
async beforeTest() {
fs.rmSync(
path.join(
options.workspace,
'vant/packages/vant/src/col/test/demo-ssr.spec.ts',
),
)
},
})
}

0 comments on commit c80eba2

Please sign in to comment.