{"id":18794279,"url":"https://github.com/angular-university/angular-testing-course","last_synced_at":"2025-05-15T04:06:46.012Z","repository":{"id":37270535,"uuid":"178179354","full_name":"angular-university/angular-testing-course","owner":"angular-university","description":"Angular Testing Course - A complete guide to Angular Unit Testing and E2E Testing","archived":false,"fork":false,"pushed_at":"2024-11-26T15:10:34.000Z","size":1786,"stargazers_count":309,"open_issues_count":15,"forks_count":676,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-04-14T05:56:27.213Z","etag":null,"topics":["angular","testing"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/angular-university.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-28T10:20:56.000Z","updated_at":"2025-04-08T08:04:49.000Z","dependencies_parsed_at":"2024-12-06T08:03:18.305Z","dependency_job_id":null,"html_url":"https://github.com/angular-university/angular-testing-course","commit_stats":{"total_commits":72,"total_committers":3,"mean_commits":24.0,"dds":"0.45833333333333337","last_synced_commit":"210f7d7cac88cbbcfe2dcde8120f4cb329685be6"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fangular-testing-course","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fangular-testing-course/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fangular-testing-course/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angular-university%2Fangular-testing-course/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/angular-university","download_url":"https://codeload.github.com/angular-university/angular-testing-course/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254270646,"owners_count":22042859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","testing"],"created_at":"2024-11-07T21:28:52.218Z","updated_at":"2025-05-15T04:06:40.974Z","avatar_url":"https://github.com/angular-university.png","language":"TypeScript","readme":"\n## Angular Testing Course\n\nThis repository contains the code of the [Angular Testing Course](https://angular-university.io/course/angular-testing-course).\n\nThis course repository is updated to Angular v19, and there is a  package-lock.json file available, for avoiding semantic versioning installation issues.\n\n![Angular Testing Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-testing-small.png)\n\n\n# Installation pre-requisites\n\nPlease install Node 18 Long Term Support Edition (LTE).\n\n# Installing the Angular CLI\n\nWith the following command the angular-cli will be installed globally in your machine:\n\n    npm install -g @angular/cli \n\n\n# How To install this repository\n\nWe can install the master branch using the following commands:\n\n    git clone https://github.com/angular-university/angular-testing-course.git\n    \nThis repository is made of several separate npm modules, that are installable separately. For example, to run the au-input module, we can do the following:\n    \n    cd angular-testing-course\n    npm install\n\nIts also possible to install the modules as usual using npm:\n\n    npm install \n\nNPM 5 or above has the big advantage that if you use it you will be installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.\n\nThis should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.\n\n# To Run the Development Backend Server\n\nWe can start the sample application backend with the following command:\n\n    npm run server\n\nThis is a small Node REST API server.\n\n# To run the Development UI Server\n\nTo run the frontend part of our code, we will use the Angular CLI:\n\n    npm start \n\nThe application is visible at port 4200: [http://localhost:4200](http://localhost:4200)\n\n\n\n# Important \n\nThis repository has multiple branches, have a look at the beginning of each section to see the name of the branch.\n\nAt certain points along the course, you will be asked to checkout other remote branches other than master. You can view all branches that you have available remotely using the following command:\n\n    git branch -a\n\n  The remote branches have their starting in origin, such as for example 1-navigation-and-containers.\n\nWe can checkout the remote branch and start tracking it with a local branch that has the same name, by using the following command:\n\n      git checkout -b section-1 origin/1-navigation-and-containers\n\nIt's also possible to download a ZIP file for a given branch,  using the branch dropdown on this page on the top left, and then selecting the Clone or Download / Download as ZIP button.\n\n# Other Courses\n# Modern Angular With Signals\n\nIf you are looking for the [Modern Angular With Signals Course](https://angular-university.io/course/angular-signals-course), the repo with the full code can be found here:\n\n![Modern Angular With Signals Course](https://d3vigmphadbn9b.cloudfront.net/course-images/large-images/angular-signals-course.jpg)\n\n# Angular Core Deep Dive Course\n\nIf you are looking for the [Angular Core Deep Dive Course](https://angular-university.io/course/angular-course), the repo with the full code can be found here:\n\n![Angular Core Deep Dive](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-core-in-depth-small.png)\n\n# RxJs In Practice\n\nIf you are looking for the [RxJs In Practice](https://angular-university.io/course/rxjs-course), the repo with the full code can be found here:\n\n![RxJs In Practice Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/rxjs-in-practice-course.png)\n\n\n# NgRx In Depth\n\nIf you are looking for the [NgRx In Depth](https://angular-university.io/course/angular-ngrx-course), the repo with the full code can be found here:\n\n![Angular Ngrx Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-ngrx-course.png)\n\n# Serverless Angular with Firebase Course\n\nIf you are looking for the [Serverless Angular with Firebase Course](https://angular-university.io/course/firebase-course), the repo with the full code can be found here:\n\n![Serverless Angular with Firebase Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/serverless-angular-small.png)\n\n# Angular Universal Course\n\nIf you are looking for the [Angular Universal Course](https://angular-university.io/course/angular-universal-course), the repo with the full code can be found here:\n\n![Angular Universal Course](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-universal-small.png)\n\n# Angular PWA Course\n\nIf you are looking for the [Angular PWA Course](https://angular-university.io/course/angular-pwa-course), the repo with the full code can be found here:\n\n![Angular PWA Course - Build the future of the Web Today](https://s3-us-west-1.amazonaws.com/angular-university/course-images/angular-pwa-course.png)\n\n# Angular Security Masterclass\n\nIf you are looking for the [Angular Security Masterclass](https://angular-university.io/course/angular-security-course), the repo with the full code can be found here:\n\n[Angular Security Masterclass](https://github.com/angular-university/angular-security-course).\n\n![Angular Security Masterclass](https://s3-us-west-1.amazonaws.com/angular-university/course-images/security-cover-small-v2.png)\n\n# Angular Advanced Library Laboratory Course\n\nIf you are looking for the Angular Advanced Course, the repo with the full code can be found here:\n\n[Angular Advanced Library Laboratory Course: Build Your Own Library](https://angular-university.io/course/angular-advanced-course).\n\n![Angular Advanced Library Laboratory Course: Build Your Own Library](https://angular-academy.s3.amazonaws.com/thumbnails/advanced_angular-small-v3.png)\n\n\n## RxJs and Reactive Patterns Angular Architecture Course\n\nIf you are looking for the RxJs and Reactive Patterns Angular Architecture Course code, the repo with the full code can be found here:\n\n[RxJs and Reactive Patterns Angular Architecture Course](https://angular-university.io/course/reactive-angular-architecture-course)\n\n![RxJs and Reactive Patterns Angular Architecture Course](https://s3-us-west-1.amazonaws.com/angular-academy/blog/images/rxjs-reactive-patterns-small.png)\n\n\n## Complete Typescript Course - Build A REST API\n\nIf you are looking for the Complete Typescript 2 Course - Build a REST API, the repo with the full code can be found here:\n\n[https://angular-university.io/course/typescript-2-tutorial](https://github.com/angular-university/complete-typescript-course)\n\n[Github repo for this course](https://github.com/angular-university/complete-typescript-course)\n\n![Complete Typescript Course](https://angular-academy.s3.amazonaws.com/thumbnails/typescript-2-small.png)\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangular-university%2Fangular-testing-course","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fangular-university%2Fangular-testing-course","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangular-university%2Fangular-testing-course/lists"}