|
@@ -0,0 +1,24 @@
|
|
|
+import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
|
+import { IonicModule } from '@ionic/angular';
|
|
|
+
|
|
|
+import { EditTagComponent } from './edit-tag.component';
|
|
|
+
|
|
|
+describe('EditTagComponent', () => {
|
|
|
+ let component: EditTagComponent;
|
|
|
+ let fixture: ComponentFixture<EditTagComponent>;
|
|
|
+
|
|
|
+ beforeEach(waitForAsync(() => {
|
|
|
+ TestBed.configureTestingModule({
|
|
|
+ declarations: [ EditTagComponent ],
|
|
|
+ imports: [IonicModule.forRoot()]
|
|
|
+ }).compileComponents();
|
|
|
+
|
|
|
+ fixture = TestBed.createComponent(EditTagComponent);
|
|
|
+ component = fixture.componentInstance;
|
|
|
+ fixture.detectChanges();
|
|
|
+ }));
|
|
|
+
|
|
|
+ it('should create', () => {
|
|
|
+ expect(component).toBeTruthy();
|
|
|
+ });
|
|
|
+});
|