@depup/jest-circus 30.3.0-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +36 -0
- package/build/index.d.ts +76 -0
- package/build/index.js +1670 -0
- package/build/index.mjs +16 -0
- package/build/jestAdapterInit.js +2049 -0
- package/build/runner.js +200 -0
- package/changes.json +30 -0
- package/package.json +98 -0
package/build/index.mjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import cjsModule from './index.js';
|
|
2
|
+
|
|
3
|
+
export const addEventHandler = cjsModule.addEventHandler;
|
|
4
|
+
export const afterAll = cjsModule.afterAll;
|
|
5
|
+
export const afterEach = cjsModule.afterEach;
|
|
6
|
+
export const beforeAll = cjsModule.beforeAll;
|
|
7
|
+
export const beforeEach = cjsModule.beforeEach;
|
|
8
|
+
export const describe = cjsModule.describe;
|
|
9
|
+
export const getState = cjsModule.getState;
|
|
10
|
+
export const it = cjsModule.it;
|
|
11
|
+
export const removeEventHandler = cjsModule.removeEventHandler;
|
|
12
|
+
export const resetState = cjsModule.resetState;
|
|
13
|
+
export const run = cjsModule.run;
|
|
14
|
+
export const setState = cjsModule.setState;
|
|
15
|
+
export const test = cjsModule.test;
|
|
16
|
+
export default cjsModule.default;
|