mirror of https://github.com/facebook/jest.git
25 lines
648 B
TypeScript
25 lines
648 B
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 {resolve} from 'path';
|
|
import {onNodeVersions} from '@jest/test-utils';
|
|
import {runYarnInstall} from '../Utils';
|
|
import runJest from '../runJest';
|
|
|
|
const DIR = resolve(__dirname, '../explicit-resource-management');
|
|
|
|
beforeAll(() => {
|
|
runYarnInstall(DIR);
|
|
});
|
|
|
|
onNodeVersions('^18.18.0 || >=20.4.0', () => {
|
|
test('Explicit resource management is supported', () => {
|
|
const result = runJest(DIR);
|
|
expect(result.exitCode).toBe(0);
|
|
});
|
|
});
|