@flemist/test-variants 0.0.16 → 1.0.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.
@@ -24,6 +24,7 @@ export declare type TestVariantsCallParams<TArgs> = {
24
24
  error: any;
25
25
  }) => void;
26
26
  abortSignal?: IAbortSignalFast;
27
+ parallel?: number;
27
28
  };
28
29
  export declare function createTestVariants<TArgs extends object>(test: (args: TArgs) => Promise<number | void> | number | void): TestVariantsSetArgs<TArgs>;
29
30
  export {};
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@flemist/test-variants",
3
- "version": "0.0.16",
3
+ "version": "1.0.0",
4
4
  "description": "Runs a test function with all possible combinations of its parameters.",
5
5
  "main": "dist/lib/index.cjs",
6
6
  "module": "dist/lib/index.mjs",
7
7
  "types": "dist/lib/index.d.ts",
8
8
  "engines": {
9
9
  "node": ">=10.4.0",
10
- "pnpm": "^7.1.6"
10
+ "pnpm": ">=7.1.6"
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
@@ -38,7 +38,7 @@
38
38
  "lint": "eslint ./**/*.{js,cjs,mjs,ts,tsx}",
39
39
  "lint:fix": "eslint --fix ./**/*.{js,cjs,mjs,ts,tsx}",
40
40
  "lint:wizard": "eslint-nibble --cache --multi ./**/*.{js,cjs,mjs,ts,tsx}",
41
- "build:js": "rimraf dist/lib && cpy \"**/assets/**\" \"../dist/lib/\" --parents --cwd=src && rollup -c",
41
+ "build:js": "rimraf dist/lib && cpy \"**/assets/**\" \"**/*.{js,cjs,mjs}\" \"../dist/lib/\" --parents --cwd=src && rollup -c",
42
42
  "build": "rimraf dist && pnpm run build:js",
43
43
  "coverage:merge": "rimraf tmp/coverage/{all,merge} && cp-flat \"tmp/coverage/*/json/**/*.json\" \"tmp/coverage/merge\" && nyc report -r lcov --report-dir tmp/coverage/all/lcov --temp-dir \"tmp/coverage/merge/\"",
44
44
  "coverage:check": "pnpm run coverage:merge && nyc check-coverage --report-dir tmp/coverage/all/lcov --lines 50 --functions 50 --branches 50 --statements 50",
@@ -58,7 +58,7 @@
58
58
  "@babel/runtime-corejs3": "7.18.3",
59
59
  "@flemist/copy-glob-flat": "0.0.5",
60
60
  "@flemist/karma-custom-launcher": "0.0.0",
61
- "@flemist/test-utils": "0.0.7",
61
+ "@flemist/test-utils": "0.0.9",
62
62
  "@rollup/plugin-alias": "3.1.9",
63
63
  "@rollup/plugin-babel": "5.3.1",
64
64
  "@rollup/plugin-commonjs": "=21.1.0",
@@ -67,16 +67,15 @@
67
67
  "@rollup/plugin-multi-entry": "4.1.0",
68
68
  "@rollup/plugin-node-resolve": "13.3.0",
69
69
  "@rollup/plugin-replace": "4.0.0",
70
- "@rollup/plugin-typescript": "8.3.3",
70
+ "@rollup/plugin-typescript": "11.1.5",
71
+ "@rollup/pluginutils": "4.2.1",
71
72
  "@types/assert": "1.5.6",
72
- "@types/fs-extra": "9.0.13",
73
73
  "@types/mocha": "9.1.1",
74
74
  "@types/node": "18.0.0",
75
75
  "@zerollup/ts-transform-paths": "1.7.18",
76
76
  "cpy-cli": "=3.1.1",
77
77
  "eslint": "8.18.0",
78
- "eslint-config-pro": "3.0.14",
79
- "fs-extra": "10.1.0",
78
+ "eslint-config-pro": "3.0.16",
80
79
  "globby": "=11.1.0",
81
80
  "karma": "6.4.0",
82
81
  "karma-chrome-launcher": "3.1.1",
@@ -85,9 +84,8 @@
85
84
  "karma-mocha": "2.0.1",
86
85
  "karma-safari-launcher": "1.0.0",
87
86
  "mocha": "9.2.2",
88
- "nodemon": "2.0.16",
89
87
  "nyc": "15.1.0",
90
- "rdtsc": "2.0.0",
88
+ "rdtsc": "3.0.3",
91
89
  "rimraf": "3.0.2",
92
90
  "rollup": "2.75.7",
93
91
  "rollup-plugin-delete": "2.0.0",
@@ -97,10 +95,10 @@
97
95
  "rollup-plugin-terser": "7.0.2",
98
96
  "ts-node": "=10.8.0",
99
97
  "tsconfig-paths": "4.0.0",
100
- "typescript": "^4.7.4"
98
+ "typescript": "=4.7.4"
101
99
  },
102
100
  "dependencies": {
103
- "@flemist/abort-controller-fast": "^0.0.5",
101
+ "@flemist/abort-controller-fast": "1.0.0",
104
102
  "tslib": "^2.4.0"
105
103
  }
106
104
  }