| 123456789101112131415161718192021222324252627282930313233343536 |
- import { TestBed, async } from "@angular/core/testing";
- import { RouterTestingModule } from "@angular/router/testing";
- import { AppComponent } from "./app.component";
- import { By } from "@angular/platform-browser";
- import { RouterOutlet, RouterLinkWithHref } from "@angular/router";
- import { NO_ERRORS_SCHEMA } from "@angular/core";
- describe("AppComponent", () => {
- beforeEach(async(() => {
- TestBed.configureTestingModule({
- declarations: [AppComponent],
- imports: [RouterTestingModule.withRoutes([])],
- schemas: [NO_ERRORS_SCHEMA]
- }).compileComponents();
- }));
- it("should create the app", () => {
- const fixture = TestBed.createComponent(AppComponent);
- const app = fixture.debugElement.componentInstance;
- expect(app).toBeTruthy();
- });
- it(`should have as title 'frontend-inversiones'`, () => {
- const fixture = TestBed.createComponent(AppComponent);
- const app = fixture.debugElement.componentInstance;
- expect(app.title).toEqual("frontend-inversiones");
- });
- it("Debe de tener un router-outlet", () => {
- const fixture = TestBed.createComponent(AppComponent);
- const debugElement = fixture.debugElement.query(By.directive(RouterOutlet));
- expect(debugElement).not.toBeNull();
- });
- });
|