jest/e2e/__tests__/isolateModulesAsync.test.ts

21 lines
577 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 {extractSummary} from '../Utils';
import runJest from '../runJest';
test('runs test with isolate modules async import', () => {
const {exitCode, stderr} = runJest('isolate-modules-async', [], {
nodeOptions: '--experimental-vm-modules --no-warnings',
});
const {summary} = extractSummary(stderr);
expect(summary).toMatchSnapshot();
expect(exitCode).toBe(0);
});