Advertisement
Guest User

Untitled

a guest
Oct 17th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1.  
  2.  
  3. describe('SomeComponent', () => {
  4. let component: SomeComponent;
  5.  
  6. beforeEach(async(() => {
  7. TestBed.configureTestingModule({
  8. providers: [ SomeComponent ]
  9. })
  10. .compileComponents();
  11. }));
  12.  
  13. beforeEach(() => {
  14. component = TestBed.get(SomeComponent);
  15. });
  16.  
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement