@genesislcap/foundation-testing 14.160.0 → 14.160.1-beta.88ffd67.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.
Files changed (2) hide show
  1. package/README.md +20 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -5,8 +5,6 @@
5
5
 
6
6
  `foundation-testing` provides shared unit and e2e testing functionality.
7
7
 
8
- ### [API Docs](./docs/api/index.md)
9
-
10
8
  ## Unit testing with UVU
11
9
 
12
10
  Unit testing is provided by [UVU](https://github.com/lukeed/uvu)
@@ -233,6 +231,26 @@ test('baseline test', async ({ page }) => {
233
231
 
234
232
  _We will be adding more details on E2E in future updates._
235
233
 
234
+ ## Installation
235
+
236
+ To enable this module in your application, follow the steps below.
237
+
238
+ 1. Add `@genesislcap/foundation-testing` as a dependency in your `package.json` file. Whenever you change the dependencies of your project, ensure you run the `$ npm run bootstrap` command again. You can find more information in the [package.json basics](https://learn.genesis.global/secure/web/basics/package-json-basics/) page.
239
+
240
+ ```json
241
+ {
242
+ ...
243
+ "dependencies": {
244
+ ...
245
+ "@genesislcap/foundation-testing": "latest"
246
+ ...
247
+ },
248
+ ...
249
+ }
250
+ ```
251
+
252
+ ## [API Docs](./docs/api/index.md)
253
+
236
254
  ## License
237
255
 
238
256
  Note: this project provides front-end dependencies and uses licensed components listed in the next section; thus, licenses for those components are required during development. Contact [Genesis Global](https://genesis.global/contact-us/) for more details.
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.160.0",
4
+ "version": "14.160.1-beta.88ffd67.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.160.0",
69
+ "@genesislcap/foundation-logger": "14.160.1-beta.88ffd67.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": "f8c85f5e0a1928e51aacd7403607bd2e7457f510"
90
+ "gitHead": "ac913c069762d50f7331a116cb1544cf9dbbbe87"
91
91
  }