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

24 行
521B

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