From 90cdc0caa5af76bb53557f21780a12f99ebff385 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Sat, 10 Sep 2022 13:51:00 +0200 Subject: [PATCH] chore: add v28 and v29 of jest to internal type --- src/rules/utils/detectJestVersion.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rules/utils/detectJestVersion.ts b/src/rules/utils/detectJestVersion.ts index fed1f0b99..060a610f1 100644 --- a/src/rules/utils/detectJestVersion.ts +++ b/src/rules/utils/detectJestVersion.ts @@ -15,6 +15,8 @@ export type JestVersion = | 25 | 26 | 27 + | 28 + | 29 | number; let cachedJestVersion: JestVersion | null = null;