From cb85673c71579d5ee4b2aa4cd97e9b3bc7bffb02 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 19 Mar 2021 11:36:56 +0100 Subject: [PATCH] Satisfy the test requirement. Signed-off-by: Eric Peterson --- packages/search-common/src/index.test.ts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 packages/search-common/src/index.test.ts diff --git a/packages/search-common/src/index.test.ts b/packages/search-common/src/index.test.ts new file mode 100644 index 0000000000..9e32ffa412 --- /dev/null +++ b/packages/search-common/src/index.test.ts @@ -0,0 +1,24 @@ +/* + * Copyright 2021 Spotify AB + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import * as anything from './'; + +describe('search-common', () => { + // TODO: Test real things once they exist. + it('should exist', () => { + expect(anything).toBeTruthy(); + }); +});