We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf5f393 commit dc252edCopy full SHA for dc252ed
README.md
@@ -91,7 +91,14 @@ Maybe you don't want to use a plugin that cleans up unused imports or maybe this
91
};
92
```
93
94
-3. Start using it inside your tests without the usage of import 🤩
+3. Import `@angular-extensions/pretty-html-log` inside your jest.setup.ts
95
+
96
+ ```typescript
97
+ import 'jest-preset-angular/setup-jest';
98
+ import '@angular-extensions/pretty-html-log';
99
+ ```
100
101
+4. Start using it inside your tests without the usage of import 🤩
102
103
```typescript
104
describe('my test suite', () => {
projects/pretty-html-log/src/public-api.ts
@@ -1,4 +1,5 @@
1
/*
2
* Public API Surface of pretty-html-log
3
*/
4
5
export * from './lib/phl';
0 commit comments