Last active
March 19, 2021 11:29
-
-
Save fkromer/561d5c7fbd214ab5f56e137829ffbfe4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p> | |
blub works! | |
</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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