Oh man, this is the thing that's been on my backburner to learn and do properly for over a year now. Thank you!
@galaxies_dev2 жыл бұрын
Now is the time Jason :)
@dansteveadekanbi98992 жыл бұрын
I have been waiting for this video. Thank you so so much.
@galaxies_dev2 жыл бұрын
Glad I could help Dansteve!
@vveerrgg4162 жыл бұрын
OMG !!! ... the one thing I have never understood and promised myself i would do next time I build a project from scratch .... SOOO now you've got me wanting to build something new to follow this method. Thanks ... (no seriously thank you... this is awesome)
@galaxies_dev2 жыл бұрын
Glad I could help! And it's always a good feeling to start a new project :)
@iridixgu7537 Жыл бұрын
Thanks for this awesome video!
@galaxies_dev Жыл бұрын
Glad you liked it!
@geronimovelasco2 жыл бұрын
Just when I need this topic, ty Simon!
@galaxies_dev2 жыл бұрын
🙌
@f19-x9k2 жыл бұрын
Love your work man, thank you. Shout out from Brazil.
@galaxies_dev2 жыл бұрын
Thanks for watching!
@igorigor8062 жыл бұрын
Thanks!
@galaxies_dev2 жыл бұрын
Thank you Igor!
@TheSaceone2 жыл бұрын
I'm gonna need to see this video more than a couple of times... Testing is mindblowing, thank you so much for explaining them! One question Simon, is it necessary to keep track of the subscription when testing observables and unsubscribe afterEach test block?
@galaxies_dev2 жыл бұрын
Not 100% sure if it's necessary but can't hurt to clean up :D
@cinematicvideosbyrumel721610 ай бұрын
How do you test it when you use functions like adding a doc to/ reading a doc from a firestore collection in the service.ts? One good video tutorial would be a good resource for us since we don't find enough resources regarding testing firestore related functions.
@duanehodges31462 жыл бұрын
SImon, how would you inject the Google Place Module into a unit test?
@Eyezbergslim2 жыл бұрын
Great tutorial as usual, but I"m having issues with a unit test that requires me mocking the GooglePlace Module. Do you have an example of how to do that?
@alanbique25482 жыл бұрын
one more top quality video!! Thankss!!
@galaxies_dev2 жыл бұрын
Thank you!
@w3tweaks408 Жыл бұрын
can I get jest unit test case for ionic capacitor plugin?
@TheLukedb7 ай бұрын
Can you make a new video with Jest since Angular is moving away from Karma?
@mostafaosman14372 жыл бұрын
Thank you for this
@galaxies_dev2 жыл бұрын
No problem 😊
@vladimirkolesnikov86722 жыл бұрын
Thanks a lot! What about unit testing functionality connected with Capacitor's native features?
@galaxies_dev2 жыл бұрын
In those cases you would most likely create a Mock object of the Capacitor class since you can't really trigger a native plugin within a test!
@ravijatav19382 жыл бұрын
Hi Simon I am trying to integrate paid api for voice and video calling in ionic Cordova app but unable to implement it. So will you please guide me for that how can I implement this. Please provide me a solution for that as soon as possible.
@mohammadaamir77412 жыл бұрын
i am also integrated same but facing same issue please provide best possible solution for that.
@PlaidFox2 жыл бұрын
Tried walking through this tutorial and got to about 4:16 when my npm Test threw the following error: "Error: src/app/services/data.service.ts:12:31 - error TS2345: Argument of type 'string | null' is not assignable to parameter of type 'string'. Type 'null' is not assignable to type 'string'. 12 const result = JSON.parse(localStorage.getItem('todos'));" Not sure if there's a newer version of this video tutorial with updated code or if I'm doing something wrong on my end.
@Gabriel-pe6oi Жыл бұрын
do this: getTodos(): any[] { const data = localStorage.getItem('todos'); const result = data ? JSON.parse(data) : []; return result; }
@vishh__2 жыл бұрын
Hey Simon can please make a video on auto verification of phone number using ionic capacitor
@carlosmontiel70782 жыл бұрын
Can you make a vide on how to do ionic build android/ios and then install it ? I was wondering the way you can sign apps with ionic.