Skip to content

Commit 2a70409

Browse files
authored
Update README.md
1 parent 066c546 commit 2a70409

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
Unit Testing in Angular Examples
2-
This course is up to date.
1+
Types of test:
32

4-
To get started, clone the repo or download it
53

6-
npm install
7-
npm test
4+
## Isolated Unit Test
5+
Testing only what is inside of the class without the decorators, testing the value and what returns the function for example. Isolate the class and testing as a regular JS code.
6+
7+
## Shallow Integration Test
8+
Gives us a way to test the component with it's template. Like ignore child directives.
9+
10+
## Deep Integration Test
11+
Integration test with Location child directives and interation testing with services

0 commit comments

Comments
 (0)