@dsivd/prestations-ng 18.0.0-beta.6 → 18.0.0-beta.7
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/UPGRADING_V18.md
CHANGED
|
@@ -22,6 +22,7 @@ Remove your `resolutions` in `package.json` before starting : if you have `resol
|
|
|
22
22
|
In the next commands, commit before each ng update.
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
+
npm install
|
|
25
26
|
ng update @angular/core@17 @angular/cli@17
|
|
26
27
|
ng update @dsivd/prestations-ng@17
|
|
27
28
|
|
|
@@ -351,22 +352,20 @@ npm install
|
|
|
351
352
|
|
|
352
353
|
```bash
|
|
353
354
|
npm run build
|
|
354
|
-
npm run test
|
|
355
355
|
npm start
|
|
356
356
|
```
|
|
357
357
|
|
|
358
|
-
**NB: If you are having trouble finding puppeteer ChromiumHeadless binary**
|
|
359
|
-
|
|
360
|
-
```bash
|
|
361
|
-
npx puppeteer browsers install chrome
|
|
362
|
-
```
|
|
363
|
-
|
|
364
358
|
Your are good if no errors are remaining!
|
|
365
359
|
Finally check if your tests run well :
|
|
366
360
|
|
|
367
361
|
```bash
|
|
368
362
|
npm run test
|
|
369
363
|
```
|
|
364
|
+
**NB: If you are having trouble finding puppeteer ChromiumHeadless binary**
|
|
365
|
+
```bash
|
|
366
|
+
npx puppeteer browsers install chrome
|
|
367
|
+
npm run test
|
|
368
|
+
```
|
|
370
369
|
|
|
371
370
|
If there is a message complaining about HttpErrorResponse & NG0205: Injector has already been destroyed,
|
|
372
371
|
in your `app.component.spec.ts` file, add `HttpClientTestingModule` to `TestBed.configureTestingModule` in `beforeEach(waitForAsync` function
|
|
Binary file
|
package/package.json
CHANGED