jest/e2e/empty-describe-with-hooks/__tests__/hookInEmptyDescribe.test.js

15 lines
372 B
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
describe('a block', () => {
beforeEach(() => {});
});
describe('another block with tests', () => {
test('this test prevents us from failing due to zero tests', () => {});
});