mirror of https://github.com/facebook/jest.git
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
import * as path from 'path';
|
|
import {skipSuiteOnJasmine} from '@jest/test-utils';
|
|
import {extractSummary} from '../Utils';
|
|
import runJest from '../runJest';
|
|
|
|
const dir = path.resolve(__dirname, '../empty-describe-with-hooks');
|
|
|
|
skipSuiteOnJasmine();
|
|
|
|
test('hook in empty describe', () => {
|
|
const result = runJest(dir, ['hookInEmptyDescribe.test.js']);
|
|
expect(result.exitCode).toBe(1);
|
|
expect(extractSummary(result.stderr)).toMatchSnapshot();
|
|
});
|
|
|
|
test('hook in describe with skipped test', () => {
|
|
const result = runJest(dir, ['hookInDescribeWithSkippedTest.test.js']);
|
|
expect(result.exitCode).toBe(0);
|
|
expect(extractSummary(result.stderr)).toMatchSnapshot();
|
|
});
|
|
|
|
test('hook in empty nested describe', () => {
|
|
const result = runJest(dir, ['hookInEmptyNestedDescribe.test.js']);
|
|
expect(result.exitCode).toBe(1);
|
|
expect(extractSummary(result.stderr)).toMatchSnapshot();
|
|
});
|
|
|
|
test('multiple hooks in empty describe', () => {
|
|
const result = runJest(dir, ['multipleHooksInEmptyDescribe.test.js']);
|
|
expect(result.exitCode).toBe(1);
|
|
expect(extractSummary(result.stderr)).toMatchSnapshot();
|
|
});
|