@genesislcap/foundation-testing 14.165.3-alpha-da317ad.0 → 14.167.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/README.md +7 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -88,6 +88,13 @@ The test-related scripts to add to your package's **package.json** file may incl
|
|
|
88
88
|
|
|
89
89
|
```
|
|
90
90
|
"test": "genx test",
|
|
91
|
+
"test:single": "genx test --match connect.test.ts",
|
|
92
|
+
"test:single:browser": "genx test --browser --match connect.test.ts",
|
|
93
|
+
"test:single:browser:raw-match": "genx test --browser --raw-match --match ./**/connect.test.ts",
|
|
94
|
+
"test:select": "genx test --match '(connect|reconnectStrategy|kv).test.ts'",
|
|
95
|
+
"test:select:browser": "genx test --browser --match '(connect|reconnectStrategy|kv).test.ts'",
|
|
96
|
+
"test:glob": "genx test --match reconnectStrategy*.test.ts",
|
|
97
|
+
"test:glob:browser": "genx test --browser --match reconnectStrategy*.test.ts",
|
|
91
98
|
"test:coverage": "genx test --coverage",
|
|
92
99
|
"test:coverage:browser": "genx test --coverage --browser",
|
|
93
100
|
"test:e2e": "genx test --e2e",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-testing",
|
|
3
3
|
"description": "Genesis Foundation Testing",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.167.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"typescript": "^4.5.5"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@genesislcap/foundation-logger": "14.
|
|
69
|
+
"@genesislcap/foundation-logger": "14.167.0",
|
|
70
70
|
"@microsoft/fast-element": "^1.12.0",
|
|
71
71
|
"@microsoft/fast-foundation": "^2.49.4",
|
|
72
72
|
"@playwright/test": "^1.18.1",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "8a6557d767463d7bcb7b3ca4d209a951766481e3"
|
|
91
91
|
}
|