fiftyone.pipeline.engines.fiftyone 4.4.98 → 4.4.99

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/package.json +1 -1
  2. package/readme.md +15 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fiftyone.pipeline.engines.fiftyone",
3
- "version": "4.4.98",
3
+ "version": "4.4.99",
4
4
  "description": "Shared base functions for implementing 51Degrees engines for the 51Degrees Pipeline API",
5
5
  "keywords": [
6
6
  "51degrees",
package/readme.md CHANGED
@@ -8,7 +8,7 @@ The 51Degrees Pipeline API is a generic web request intelligence and data proces
8
8
 
9
9
  ## This package - fiftyone.pipeline.engines.fiftyone
10
10
 
11
- This package uses the `engines` class created by the `fiftyone.pipeline.engines`. It makes available:
11
+ This package uses the `engines` class created by the [`fiftyone.pipeline.engines`](/fiftyone.pipeline.engines#readme.md). It makes available:
12
12
 
13
13
  * A `share usage` engine that is used to send usage information to 51Degrees.
14
14
 
@@ -17,3 +17,17 @@ This package uses the `engines` class created by the `fiftyone.pipeline.engines`
17
17
  ```
18
18
  npm install fiftyone.pipeline.engines.fiftyone
19
19
  ```
20
+
21
+ ## Tests
22
+
23
+ To run tests you will need to install the `jest` library.
24
+
25
+ ```
26
+ npm install jest --global
27
+ ```
28
+
29
+ Then, navigate to the module directory and execute:
30
+
31
+ ```
32
+ npm test
33
+ ```