12345678910111213141516171819202122232425262728 |
- /* tslint:disable:no-unused-variable */
- import { async, ComponentFixture, TestBed } from '@angular/core/testing';
- import { By } from '@angular/platform-browser';
- import { DebugElement } from '@angular/core';
- import { AppraiseComponent } from './appraise.component';
- describe('AppraiseComponent', () => {
- let component: AppraiseComponent;
- let fixture: ComponentFixture<AppraiseComponent>;
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [ AppraiseComponent ]
- })
- .compileComponents();
- }));
- beforeEach(() => {
- fixture = TestBed.createComponent(AppraiseComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- });
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|