Skip to content

Instantly share code, notes, and snippets.

@fkromer
Last active March 19, 2021 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fkromer/561d5c7fbd214ab5f56e137829ffbfe4 to your computer and use it in GitHub Desktop.
Save fkromer/561d5c7fbd214ab5f56e137829ffbfe4 to your computer and use it in GitHub Desktop.
<p>
blub works!
</p>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { BlubComponent } from './blub.component';
describe('BlubComponent', () => {
let component: BlubComponent;
let fixture: ComponentFixture<BlubComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ BlubComponent ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(BlubComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-blub',
templateUrl: './blub.component.html',
styleUrls: ['./blub.component.scss'],
})
export class BlubComponent implements OnInit {
constructor() { }
ngOnInit() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment