leejinho 8f81085251 1. anchor tag cursor styling.
2. anchor tag open url for sticker, mass-text and mass-text-detail
3. mass-detail view component added
2019-11-20 10:29:49 +09:00

26 lines
657 B
TypeScript

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