Page MenuHomec4science

token.component.spec.ts
No OneTemporary

File Metadata

Created
Fri, Jul 4, 04:19

token.component.spec.ts

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TokenComponent } from './token.component';
describe('TokenComponent', () => {
let component: TokenComponent;
let fixture: ComponentFixture<TokenComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ TokenComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TokenComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

Event Timeline