I am working with angular 2 and I'm receiving this message when I run a test with ng test --build=false --watch=false
:
'app-feed' is not a known element:
1. If 'app-feed' is an Angular component, then verify that it is part of this mod
2. If 'app-feed' is a Web Component then add "CUSTOM_ELEMENTS_SCHEMA" to the '@Ng
[ERROR ->]<app-feed></app-feed>**
app.component.html file content:
<app-menu></app-menu>
<app-feed></app-feed>
app.component.ts file content:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'app works!';
wonderfulProperty = 'Hola';
}
app.module.ts file content:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { AppComponent } from './app.component';
import { MenuComponent } from './menu/menu.component';
import { FeedComponent } from './feed/feed.component';
@NgModule({
declarations: [AppComponent,MenuComponent,FeedComponent],
imports: [BrowserModule, FormsModule,HttpModule],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
feed.component.ts file content:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-feed',
templateUrl: './feed.component.html',
styleUrls: ['./feed.component.css']
})
export class FeedComponent implements OnInit {
constructor() { }
ngOnInit() {}
}
Can someone help me figure out how to fix this?