Skip to content

Instantly share code, notes, and snippets.

@KarolinaCzo
Created August 22, 2018 07:05
Show Gist options
  • Save KarolinaCzo/94bbd5abf80ad05d9ff7059bbcb0a787 to your computer and use it in GitHub Desktop.
Save KarolinaCzo/94bbd5abf80ad05d9ff7059bbcb0a787 to your computer and use it in GitHub Desktop.
Not declared APP_BASE_HREF - unit tests Angular 2/6
You need to declare APP_BASE_HREF in your app - more info on this here:
https://angular.io/api/common/APP_BASE_HREF
I added this in the 'app.module'
providers: [{ provide: APP_BASE_HREF, useValue: '/' }],
You can also add it directly in the test file, also as providers.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment