Просмотр исходного кода

test: first full test suite passing

Evan You 4 лет назад
Родитель
Сommit
8e672c4251
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      test/unit/features/component/component-async.spec.ts

+ 4 - 0
test/unit/features/component/component-async.spec.ts

@@ -21,6 +21,10 @@ describe('Component async', () => {
   beforeAll(function () {
     // @ts-expect-error
     global.setTimeout = function (func, delay) {
+      if (delay >= 1000) {
+        // skip vitest internal timeouts
+        return
+      }
       const id = oldSetTimeout(function () {
         delete timeoutsPending[id]
         func()