From 96c4d24cb98cd6b7407a7acf402e6785201a3689 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 14 Feb 2020 12:51:14 -0800 Subject: [PATCH] Add boilerplate test Summary: To verify that the infra is working. Reviewed By: mweststrate Differential Revision: D19881083 fbshipit-source-id: 92d5f55ecbef84003b6000b4c95df1fe0518719c --- pkg/src/__tests__/index.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pkg/src/__tests__/index.ts diff --git a/pkg/src/__tests__/index.ts b/pkg/src/__tests__/index.ts new file mode 100644 index 000000000..f055e4541 --- /dev/null +++ b/pkg/src/__tests__/index.ts @@ -0,0 +1,12 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * + * @format + */ + +test('tests are working', () => { + expect(true).toBeTruthy(); +});