From d348e533f387a89558375b97e2a4f0a1146e877d Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Fri, 30 Aug 2019 09:45:26 +0200 Subject: [PATCH] copyright header --- e2e/transform/cache/__tests__/aTests.js | 7 +++++++ e2e/transform/cache/__tests__/bTests.js | 7 +++++++ e2e/transform/cache/__tests__/cTests.js | 7 +++++++ e2e/transform/cache/__tests__/dTests.js | 7 +++++++ e2e/transform/cache/common-file.js | 7 +++++++ 5 files changed, 35 insertions(+) diff --git a/e2e/transform/cache/__tests__/aTests.js b/e2e/transform/cache/__tests__/aTests.js index 173bcde7f36a..2f8f32a8b022 100644 --- a/e2e/transform/cache/__tests__/aTests.js +++ b/e2e/transform/cache/__tests__/aTests.js @@ -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. + */ + const phrase = require('../common-file'); test('A', () => { diff --git a/e2e/transform/cache/__tests__/bTests.js b/e2e/transform/cache/__tests__/bTests.js index a1542b20d3fc..c896f74c4967 100644 --- a/e2e/transform/cache/__tests__/bTests.js +++ b/e2e/transform/cache/__tests__/bTests.js @@ -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. + */ + const phrase = require('../common-file'); test('B', () => { diff --git a/e2e/transform/cache/__tests__/cTests.js b/e2e/transform/cache/__tests__/cTests.js index 6f55bb151cf2..55827295d0af 100644 --- a/e2e/transform/cache/__tests__/cTests.js +++ b/e2e/transform/cache/__tests__/cTests.js @@ -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. + */ + const phrase = require('../common-file'); test('C', () => { diff --git a/e2e/transform/cache/__tests__/dTests.js b/e2e/transform/cache/__tests__/dTests.js index fa165e2ddf0f..74716a8e9aa3 100644 --- a/e2e/transform/cache/__tests__/dTests.js +++ b/e2e/transform/cache/__tests__/dTests.js @@ -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. + */ + const phrase = require('../common-file'); test('D', () => { diff --git a/e2e/transform/cache/common-file.js b/e2e/transform/cache/common-file.js index 76e8a568d58d..798c701db1fa 100644 --- a/e2e/transform/cache/common-file.js +++ b/e2e/transform/cache/common-file.js @@ -1 +1,8 @@ +/** + * 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. + */ + module.exports = 'hello';