fix tests

This commit is contained in:
Nicolas Constant 2019-11-02 01:30:41 -04:00
parent 6d7ddec1bd
commit 903fdce232
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import { StreamsState } from '../../states/streams.state';
import { NavigationService } from '../../services/navigation.service';
import { NotificationService } from '../../services/notification.service';
import { MastodonService } from '../../services/mastodon.service';
import { AuthService } from '../../services/auth.service';
describe('CreateStatusComponent', () => {
@ -35,7 +36,7 @@ describe('CreateStatusComponent', () => {
StreamsState
]),
],
providers: [NavigationService, NotificationService, MastodonService],
providers: [NavigationService, NotificationService, MastodonService, AuthService],
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
}).compileComponents();
}));