Commit 9d908da37d815a37dddcf322bec735f614bab0e4
1 parent
b65dcbc6d8
Exists in
master
and in
1 other branch
Creado popover para los sinonimos.
Showing
4 changed files
with
41 additions
and
0 deletions
Show diff stats
src/app/components/popover-sinonimos/popover-sinonimos.component.html
| ... | ... | @@ -0,0 +1 @@ |
| 1 | +<p>popover-sinonimos works!</p> |
src/app/components/popover-sinonimos/popover-sinonimos.component.scss
src/app/components/popover-sinonimos/popover-sinonimos.component.spec.ts
| ... | ... | @@ -0,0 +1,25 @@ |
| 1 | +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |
| 2 | + | |
| 3 | +import { PopoverSinonimosComponent } from './popover-sinonimos.component'; | |
| 4 | + | |
| 5 | +describe('PopoverSinonimosComponent', () => { | |
| 6 | + let component: PopoverSinonimosComponent; | |
| 7 | + let fixture: ComponentFixture<PopoverSinonimosComponent>; | |
| 8 | + | |
| 9 | + beforeEach(async(() => { | |
| 10 | + TestBed.configureTestingModule({ | |
| 11 | + declarations: [ PopoverSinonimosComponent ] | |
| 12 | + }) | |
| 13 | + .compileComponents(); | |
| 14 | + })); | |
| 15 | + | |
| 16 | + beforeEach(() => { | |
| 17 | + fixture = TestBed.createComponent(PopoverSinonimosComponent); | |
| 18 | + component = fixture.componentInstance; | |
| 19 | + fixture.detectChanges(); | |
| 20 | + }); | |
| 21 | + | |
| 22 | + it('should create', () => { | |
| 23 | + expect(component).toBeTruthy(); | |
| 24 | + }); | |
| 25 | +}); |
src/app/components/popover-sinonimos/popover-sinonimos.component.ts
| ... | ... | @@ -0,0 +1,15 @@ |
| 1 | +import { Component, OnInit } from '@angular/core'; | |
| 2 | + | |
| 3 | +@Component({ | |
| 4 | + selector: 'app-popover-sinonimos', | |
| 5 | + templateUrl: './popover-sinonimos.component.html', | |
| 6 | + styleUrls: ['./popover-sinonimos.component.scss'] | |
| 7 | +}) | |
| 8 | +export class PopoverSinonimosComponent implements OnInit { | |
| 9 | + | |
| 10 | + constructor() { } | |
| 11 | + | |
| 12 | + ngOnInit() { | |
| 13 | + } | |
| 14 | + | |
| 15 | +} |