@opensourcekd/ng-common-libs 2.0.1 โ 2.0.2
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 +18 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -3
package/README.md
CHANGED
|
@@ -141,8 +141,26 @@ npm run build
|
|
|
141
141
|
|
|
142
142
|
# Run linter
|
|
143
143
|
npm run lint
|
|
144
|
+
|
|
145
|
+
# Run tests
|
|
146
|
+
npm test
|
|
147
|
+
|
|
148
|
+
# Run tests with coverage
|
|
149
|
+
npm run test:coverage
|
|
150
|
+
|
|
151
|
+
# Run tests in watch mode
|
|
152
|
+
npm run test:watch
|
|
144
153
|
```
|
|
145
154
|
|
|
155
|
+
## ๐งช Testing
|
|
156
|
+
|
|
157
|
+
This library maintains high test coverage:
|
|
158
|
+
- **99.26%** statement coverage
|
|
159
|
+
- **83.45%** branch coverage
|
|
160
|
+
- **100%** function coverage
|
|
161
|
+
|
|
162
|
+
All core utilities and services are thoroughly tested using Jest and Angular testing utilities.
|
|
163
|
+
|
|
146
164
|
## ๐ License
|
|
147
165
|
|
|
148
166
|
MIT
|