Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
Repozitorijs ir arhivēts. Tam var aplūkot failus un to var klonēt, bet nevar iesūtīt jaunas izmaiņas, kā arī atvērt jaunas problēmas/izmaiņu pieprasījumus.
|
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
-
- import { WelcomeComponent } from './welcome.component';
-
- describe('WelcomeComponent', () => {
- let component: WelcomeComponent;
- let fixture: ComponentFixture<WelcomeComponent>;
-
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ WelcomeComponent ]
- })
- .compileComponents();
- }));
-
- beforeEach(() => {
- fixture = TestBed.createComponent(WelcomeComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
-
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|