From 2f34d49d0236b08c5b209199090774b8419b6598 Mon Sep 17 00:00:00 2001 From: Andrew Bradley Date: Sat, 15 Jun 2019 17:54:33 +0000 Subject: [PATCH] fix --- packages/jest-types/src/Global.ts | 7 +++++++ packages/jest-types/src/Jasmine.ts | 7 +++++++ packages/jest-types/src/no-global.ts | 7 +++++++ 3 files changed, 21 insertions(+) diff --git a/packages/jest-types/src/Global.ts b/packages/jest-types/src/Global.ts index 29ee20e1a011..13913e6abc4b 100644 --- a/packages/jest-types/src/Global.ts +++ b/packages/jest-types/src/Global.ts @@ -1,3 +1,10 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + import { It, // eslint-disable-line @typescript-eslint/no-unused-vars ItConcurrent, // eslint-disable-line @typescript-eslint/no-unused-vars diff --git a/packages/jest-types/src/Jasmine.ts b/packages/jest-types/src/Jasmine.ts index 5560c8007ef9..b8ef96c2f7d4 100644 --- a/packages/jest-types/src/Jasmine.ts +++ b/packages/jest-types/src/Jasmine.ts @@ -1,3 +1,10 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + // TODO: Get rid of this at some point export type Jasmine = { _DEFAULT_TIMEOUT_INTERVAL?: number; diff --git a/packages/jest-types/src/no-global.ts b/packages/jest-types/src/no-global.ts index bfa6400814ea..e38f36ad9541 100644 --- a/packages/jest-types/src/no-global.ts +++ b/packages/jest-types/src/no-global.ts @@ -1,3 +1,10 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + */ + import * as Circus from './Circus'; import * as Config from './Config'; import * as Global from './Global';