-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unit tests #1
Labels
help wanted
Extra attention is needed
Comments
Nice motivation @nikosanif! I would also suggest to use Spectator to simplify unit tests, as it helps us get rid of all the boilerplate grunt work. What do you think? |
Sure! I have not used it at all in the past and it looks quite interesting. Besides, the libraries provided by |
theoklitosBam7
added a commit
to theoklitosBam7/angular-authentication
that referenced
this issue
Jan 11, 2022
- Add and configure Jest for unit testing. - Remove Karma and Jasmine related packages. - Add @angular-builders/jest that allows us running `ng test` with Jest instead of Karma & Jasmine. - Add @ngneat/spectator to simplify unit tests. Partially resolves nikosanif#1
theoklitosBam7
added a commit
to theoklitosBam7/angular-authentication
that referenced
this issue
Jan 11, 2022
- Add and configure Jest for unit testing. - Remove Karma and Jasmine related packages. - Add @angular-builders/jest that allows us running `ng test` with Jest instead of Karma & Jasmine. - Add @ngneat/spectator to simplify unit tests. Partially resolves nikosanif#1
nikosanif
pushed a commit
that referenced
this issue
Jan 13, 2022
- Add and configure Jest for unit testing. - Remove Karma and Jasmine related packages. - Add @angular-builders/jest that allows us running `ng test` with Jest instead of Karma & Jasmine. - Add @ngneat/spectator to simplify unit tests. Partially resolves #1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Currently, the application does not have any tests. Thus, we should write unit tests.
Motivation
Testing your Angular application helps you check that your app is working as you expect.
Suggested Implementation
Alternate Implementations
N/A
The text was updated successfully, but these errors were encountered: