Angular Web App
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

26 行
684 B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { KeyValueHolderComponent } from './key-value-holder.component';
  3. describe('KeyValueHolderComponent', () => {
  4. let component: KeyValueHolderComponent;
  5. let fixture: ComponentFixture<KeyValueHolderComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ KeyValueHolderComponent ]
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(KeyValueHolderComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });