diff --git a/packages/jest-types/src/Global.ts b/packages/jest-types/src/Global.ts index d237eaa3ef5d..c1971dc210d8 100644 --- a/packages/jest-types/src/Global.ts +++ b/packages/jest-types/src/Global.ts @@ -84,18 +84,3 @@ export interface Global extends NodeJS.Global { spyOnProperty: () => void; } -declare global { - module NodeJS { - interface Global { - it: It; - test: ItConcurrent; - fit: ItBase; - xit: ItBase; - xtest: ItBase; - describe: Describe; - xdescribe: DescribeBase; - fdescribe: DescribeBase; - jasmine: Jasmine; - } - } -}