diff --git a/e2e/__tests__/testMatch.test.ts b/e2e/__tests__/testMatch.test.ts index f5bd3c8ac396..60b10ca627af 100644 --- a/e2e/__tests__/testMatch.test.ts +++ b/e2e/__tests__/testMatch.test.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 {extractSummary} from '../Utils'; import runJest from '../runJest'; diff --git a/e2e/test-match/test-suites/sample-suite.mjs b/e2e/test-match/test-suites/sample-suite.mjs index 6a9ca71b0ee0..0d0703ef8e57 100644 --- a/e2e/test-match/test-suites/sample-suite.mjs +++ b/e2e/test-match/test-suites/sample-suite.mjs @@ -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. + */ + test('mjs extension', () => { expect(1).toBe(1); }); diff --git a/e2e/test-match/test-suites/sample-suite2.cjs b/e2e/test-match/test-suites/sample-suite2.cjs index c512c78ee5fa..bb80acb6f879 100644 --- a/e2e/test-match/test-suites/sample-suite2.cjs +++ b/e2e/test-match/test-suites/sample-suite2.cjs @@ -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. + */ + test('cjs extension', () => { expect(1).toBe(1); });