Nav apraksta
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.

search.spec.ts 527B

12345678910111213141516171819202122
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { Search } from './search';
  3. describe('Search', () => {
  4. let component: Search;
  5. let fixture: ComponentFixture<Search>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. imports: [Search],
  9. }).compileComponents();
  10. fixture = TestBed.createComponent(Search);
  11. component = fixture.componentInstance;
  12. await fixture.whenStable();
  13. });
  14. it('should create', () => {
  15. expect(component).toBeTruthy();
  16. });
  17. });