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.
- package/package.json +1 -1
- package/readme.md +15 -1
package/package.json
CHANGED
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
|
|
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
|
+
```
|