mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
9 lines
264 B
TypeScript
9 lines
264 B
TypeScript
import { jest } from '@jest/globals';
|
|
import { directoryManifest } from '../../directoryManifest.mjs';
|
|
|
|
jest.unstable_mockModule('../../src/python_package', async () => ({
|
|
python_package: await directoryManifest('./src/python/'),
|
|
}));
|
|
|
|
globalThis.jest = jest;
|