Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Jan 22, 2019
1 parent 26abb41 commit 127a230
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions ui/src/app/admin/container/admin-management.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@ import { FormsModule } from '@angular/forms';
import { StoreModule, Store, combineReducers } from '@ngrx/store';
import * as fromAdmin from '../reducer';
import { AdminManagementPageComponent } from './admin-management.component';
import { MockI18nModule } from '../../../../testing/i18n.stub';
import { MockI18nModule } from '../../../testing/i18n.stub';
import { Component } from '@angular/core';

@Component({
selector: 'user-management',
template: '<div></div>'
})
export class UserManagementComponent {

constructor() {}
}

describe('Admin Management Page Component', () => {
let fixture: ComponentFixture<AdminManagementPageComponent>;
Expand All @@ -20,7 +30,8 @@ describe('Admin Management Page Component', () => {
MockI18nModule
],
declarations: [
AdminManagementPageComponent
AdminManagementPageComponent,
UserManagementComponent
],
});

Expand Down

0 comments on commit 127a230

Please sign in to comment.