@kvs/common-test-case 2.1.3 → 2.1.4
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.
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { KVS, KVSOptions } from "@kvs/types";
|
|
2
|
-
export
|
|
2
|
+
export type KVSTestCaseOptions = {
|
|
3
3
|
setTestDataList: {
|
|
4
4
|
name: string;
|
|
5
5
|
value: any;
|
|
6
6
|
type?: "object";
|
|
7
7
|
}[];
|
|
8
8
|
};
|
|
9
|
-
export
|
|
9
|
+
export type KVSTestCaseRef = {
|
|
10
10
|
current: KVS<any> | null;
|
|
11
11
|
updateRef(ref: KVS<any>): void;
|
|
12
12
|
};
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { KVS, KVSOptions } from "@kvs/types";
|
|
2
|
-
export
|
|
2
|
+
export type KVSTestCaseOptions = {
|
|
3
3
|
setTestDataList: {
|
|
4
4
|
name: string;
|
|
5
5
|
value: any;
|
|
6
6
|
type?: "object";
|
|
7
7
|
}[];
|
|
8
8
|
};
|
|
9
|
-
export
|
|
9
|
+
export type KVSTestCaseRef = {
|
|
10
10
|
current: KVS<any> | null;
|
|
11
11
|
updateRef(ref: KVS<any>): void;
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kvs/common-test-case",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "Common Test Case for KVS",
|
|
5
5
|
"homepage": "https://github.com/azu/kvs/tree/master/packages/common-test-case/",
|
|
6
6
|
"bugs": {
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"trailingComma": "none"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@kvs/types": "^2.1.
|
|
43
|
+
"@kvs/types": "^2.1.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@types/mocha": "^
|
|
47
|
-
"@types/node": "^
|
|
48
|
-
"mocha": "^
|
|
49
|
-
"prettier": "^
|
|
50
|
-
"rimraf": "^
|
|
51
|
-
"ts-node": "^10.
|
|
46
|
+
"@types/mocha": "^10.0.1",
|
|
47
|
+
"@types/node": "^20.4.2",
|
|
48
|
+
"mocha": "^10.2.0",
|
|
49
|
+
"prettier": "^3.0.0",
|
|
50
|
+
"rimraf": "^5.0.1",
|
|
51
|
+
"ts-node": "^10.9.1",
|
|
52
52
|
"ts-node-test-register": "^10.0.0",
|
|
53
|
-
"typescript": "^
|
|
53
|
+
"typescript": "^5.1.6"
|
|
54
54
|
},
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "d7a5ac9d3c859cceaa75711916bc6bb4e6cd61be"
|
|
59
59
|
}
|