This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { DebugElement } from "@angular/core"; | |
| import { ComponentFixture, TestBed } from "@angular/core/testing" | |
| import { By } from "@angular/platform-browser"; | |
| import { HeroComponent } from "./hero.component" | |
| describe('HeroComponent (integration tests)', () => { | |
| let fixture: ComponentFixture<HeroComponent>; | |
| beforeEach(() => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { TestBed, ComponentFixture } from "@angular/core/testing" | |
| import { NO_ERRORS_SCHEMA } from "@angular/core"; | |
| import { HeroesComponent } from "./heroes.component"; | |
| import { HeroService } from "../hero.service"; | |
| import { of } from "rxjs"; | |
| import { HeroComponent } from "../hero/hero.component"; | |
| import { By } from "@angular/platform-browser"; | |
| describe('Hero Component', () => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Lesson 1 - Iterations | |
| - BinaryGap - https://codility.com/demo/results/trainingU2FQPQ-7Y4/ | |
| Lesson 2 - Arrays | |
| - OddOccurrencesInArray - https://codility.com/demo/results/trainingFN5RVT-XQ4/ | |
| - CyclicRotation - https://codility.com/demo/results/trainingSH2W5R-RP5/ | |
| Lesson 3 - Time Complexity | |
| - FrogJmp - https://codility.com/demo/results/training6KKWUD-BXJ/ | |
| - PermMissingElem - https://codility.com/demo/results/training58W4YJ-VHA/ |