Browse Source

chore: bump transition tests buffer in ci

Evan You 1 year ago
parent
commit
85ee76f29d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/vue/__tests__/e2e/Transition.spec.ts

+ 1 - 1
packages/vue/__tests__/e2e/Transition.spec.ts

@@ -8,7 +8,7 @@ describe('e2e: Transition', () => {
   const baseUrl = `file://${path.resolve(__dirname, './transition.html')}`
 
   const duration = process.env.CI ? 200 : 50
-  const buffer = 20
+  const buffer = process.env.CI ? 50 : 20
 
   const transitionFinish = (time = duration) => timeout(time + buffer)