我开始在我的angular 6应用程序中使用测试。尽管不确定如何解决,但我遇到了错误。
您可以在下面的测试中看到,我抱怨说没有设置基本href,但是在我的index.html中,我确实有<base href="/">
Error: No base href set. Please provide a value for the APP_BASE_HREF token or
add a base element to the document.
at new PathLocationStrategy (./node_modules/@angular/common/fesm5/common.js?:498:19)
at provideLocationStrategy (./node_modules/@angular/router/fesm5/router.js?:5302:9)
at _callFactory (./node_modules/@angular/core/fesm5/core.js?:8735:20)
at _createProviderInstance (./node_modules/@angular/core/fesm5/core.js?:8687:26)
at initNgModule (./node_modules/@angular/core/fesm5/core.js?:8617:32)
at new NgModuleRef_ (./node_modules/@angular/core/fesm5/core.js?:9343:9)
at createNgModuleRef (./node_modules/@angular/core/fesm5/core.js?:9332:12)
at Object.debugCreateNgModuleRef [as createNgModuleRef]
(./node_modules/@angular/core/fesm5/core.js?:11157:12)
at NgModuleFactory_.create (./node_modules/@angular/core/fesm5/core.js?:11874:25)
at TestBed._initIfNeeded (./node_modules/@angular/core/fesm5/testing.js?:1015:47)
这是我的item-component.spec.ts
测试
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
import {ItemComponent} from './item.component';
import {HttpClientTestingModule} from '@angular/common/http/testing';
import {AppRoutingModule} from '../../app-routing.module';
import {HomeComponent} from '../home/home.component';
import {ContactComponent} from '../contact/contact.component';
import {InventoryComponent} from '../inventory/inventory.component';
import {SearchComponent} from '../search/search.component';
import {ApplicationFormComponent} from '../application/application-form.component';
import {SiteShellComponent} from '../site-shell/site-shell.component';
import {MainNavigationComponent} from '../partials/main-navigation/main-navigation.component';
import {FooterComponent} from '../partials/footer/footer.component';
import {ReactiveFormsModule} from '@angular/forms';
import {DebugComponent} from '../debug/debug.component';
import {NewformComponent} from '../debug/under-test/newform.component';
import {MultiSelectComponent} from '../debug/under-test/multi-select.component';
describe('ItemComponent', () => {
let component: ItemComponent;
let fixture: ComponentFixture<ItemComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [
ItemComponent,
HomeComponent,
ContactComponent,
InventoryComponent,
SearchComponent,
FinanceApplicationComponent,
SiteShellComponent,
MainNavigationComponent,
FooterComponent,
DebugComponent,
NewformComponent,
MultiSelectComponent,
],
imports: [
HttpClientTestingModule,
AppRoutingModule,
ReactiveFormsModule
],
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ItemComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
为什么我的测试看不到基本href,或者我做错了什么?我真的不确定在这里要解决什么。我尝试导入AppComponent,但这没有帮助。
编辑:即使某人无法回答,但至少可以指出正确的方向,我对此也很固执。 谢谢。
答案 0 :(得分:0)
将RouterTestingModule从@ angular / router / testing导入到Testbed中。那应该可以解决问题。