Fix naming, add tests #5

Merged
manuel merged 19 commits from feature/use-proper-dirstructure into develop 2018-09-01 01:34:35 +02:00
Showing only changes of commit a0590cc0db - Show all commits

View file

@ -1,6 +1,7 @@
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {VersionComponent} from './version.component';
import {environment} from '../../environments/environment';
describe('VersionComponent', () => {
let component: VersionComponent;
@ -22,4 +23,14 @@ describe('VersionComponent', () => {
it('should create', () => {
expect(component).toBeTruthy();
});
it('should contain the correct version', () => {
// when executing the test, we're always running with the dev environment
expect(component.VERSION).toEqual(`${environment.appVersion} (development build)`);
});
it('should have the correct value for the "production" property', () => {
// when executing the test, we're always running with the dev environment
expect(component.PROD).toBeFalsy();
});
});