From c80eba2181731b314bb44602465513d0736a1d00 Mon Sep 17 00:00:00 2001 From: Evan You Date: Thu, 15 Aug 2024 14:50:35 +0800 Subject: [PATCH] temporarily remove vant offending test case --- tests/vant.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/vant.ts b/tests/vant.ts index e9172d4..0c6efa9 100644 --- a/tests/vant.ts +++ b/tests/vant.ts @@ -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({ @@ -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', + ), + ) + }, }) }