diff --git a/globals.d.ts b/globals.d.ts index b25ad1f..95f7db6 100644 --- a/globals.d.ts +++ b/globals.d.ts @@ -11,6 +11,13 @@ declare global { * Put it blocks inside of describe blocks to describe what behavior should be correct. */ function describe(phrase: string, callback: (context: Context) => void): void; + + /** + * These methods are special versions of it that automatically mark the it block as focused or skipped. + * + * Put it blocks inside of describe blocks to describe what behavior should be correct. + */ + function describeFOCUS(phrase: string, callback: (context: Context) => void): void; /** * This function creates a new 'it' block.