gpt4 book ai didi

angular - 由于未设置 APP_BASE_HREF,在 Angular 6 中测试失败

转载 作者:行者123 更新时间:2023-11-28 19:59:48 25 4
gpt4 key购买 nike

我开始在我的 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,但这没有帮助。

编辑:即使有人无法回答,但至少为我指明了正确的方向,我对此深信不疑。谢谢。

最佳答案

将 RouterTestingModule 从@angular/router/testing 导入到测试平台中。这应该可以解决问题。

关于angular - 由于未设置 APP_BASE_HREF,在 Angular 6 中测试失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54408135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com