qunitx 1.1.1 → 1.1.2
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/dist/node/index.d.ts +2 -0
- package/dist/node/index.js +1 -0
- package/package.json +12 -5
package/dist/node/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
|
+
import Assert from '../shared/assert.js';
|
|
1
2
|
import Module from './module.js';
|
|
2
3
|
import Test from './test.js';
|
|
3
4
|
export declare const module: typeof Module;
|
|
4
5
|
export declare const test: typeof Test;
|
|
6
|
+
export { Assert };
|
|
5
7
|
declare const _default: {
|
|
6
8
|
AssertionError: import("../types.js").AssertionErrorConstructor;
|
|
7
9
|
module: typeof Module;
|
package/dist/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qunitx",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.2",
|
|
5
5
|
"description": "A universal test framework for testing any js file on node.js, browser or deno with QUnit API",
|
|
6
6
|
"author": "Izel Nakri",
|
|
7
7
|
"license": "MIT",
|
|
@@ -55,10 +55,17 @@
|
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"exports": {
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
58
|
+
".": {
|
|
59
|
+
"types": "./dist/node/index.d.ts",
|
|
60
|
+
"node": "./dist/node/index.js",
|
|
61
|
+
"deno": "./shims/deno/index.ts",
|
|
62
|
+
"default": "./dist/browser/index.js"
|
|
63
|
+
},
|
|
64
|
+
"./assert": {
|
|
65
|
+
"types": "./dist/shared/assert.d.ts",
|
|
66
|
+
"deno": "./shims/shared/assert.ts",
|
|
67
|
+
"default": "./dist/shared/assert.js"
|
|
68
|
+
}
|
|
62
69
|
},
|
|
63
70
|
"files": [
|
|
64
71
|
"dist/",
|