Test basis for ion angular real cordova app devices with continuous integration?

Our team starts the project, and we would like to have an automated testing server that tests our application on real devices, instead of emulators or just a browser.

This application is for the ionic framework, therefore Cordova + AngularJS.

I am going to study this and give the best answer that I have, but at the same time, if someone is familiar with it, I would like to tell everything about it!

+5
source share
3 answers

I am also interested in this.

For example, I manage to encode very few tests using APPIUM , but it seems to do the work for tests using the Selenium web server

Waiting for feedback from other users

+1
source

Intel xkd provides device testing through the intel xkd preview application and debugging the device via adb using a debugger. A build service is also provided for Android, ios, windows, tizen, amazon, nook, webapp, chrome, facebook and firefox. This is the easiest way I found for testing on a device, to make sure the Cordova plug-ins work, and to get a debug version of JavaScript. https://software.intel.com/en-us/intel-xdk

0
source

Another option is to run an ionic application in phantomjs and run integration tests using your server infrastructure. This allows you to easily test the entire stack. Theres a blog post on how to do this with rails at http://www.dovetaildigital.io/blog/2015/10/28/rails-and-ionic-make-love-part-three

0
source

All Articles