Run Automated Electron App Tests Using Travis CI
Last year I developed the Standup Picker, which is an Angular application running in an Electron shell.
As I released new versions while older versions were already in use, I wanted to gain more confidence while releasing newer versions of my application.
As the source code is available at GitHub, I researched for free alternatives to Jenkins which we used at work for Continuous Integration (CI).
I found Travis, a free continuous integration platform for GitHub projects.
My Expectations
I wanted to integrate automated E2E and unit tests before each release of the Electron application. In my case, a release should be triggered if something has been merged to master. So the CI should perform these steps:
- Run unit tests
- Run E2E tests
- Create Electron releases for OS X, Linux, Windows
This way, I can ensure that my releases work as expected (at least all the stuff I have covered by tests).
Integrate Travis CI in your project
To use Travis, you need to make sure that you have a GitHub account and owner permissions for this project hosted on GitHub.
The next step is to visit the Travis homepage, sign up with GitHub and follow the instructions until you can select your project.
To tell Travis CI what automated steps should be executed, you need to add a .travis.yml
file to the root directory of your repository.
Finally, you must add the .travis.yml
file to git. If you then commit and push, a Travis CI build is triggered. Be aware that Travis can only run builds on commits that were pushed after the .travis.yml
file has been pushed to git.
Configure Travis CI
I will explain how I configured the .travis.yml
file for my Electron application.
Select Operating System
I start with a quote from the electron-builder website, which is an NPM package I used to create my Electron releases:
Don’t expect that you can build app for all platforms on one platform.
As I wanted to create releases for OS X, Windows, Linux I had to define multiple operating systems. The main reason was that it is impossible to create a Linux release from OS X or Windows.
So I ran my Travis setup on Linux and OS X in parallel. My scripts check the current operating system and run only in the correct environment.
Check the official documentation for more details.
These are the relevant parts of my .travis.yml
file:
Electron Builder Configurations
For the electron-builder I added some additional cache and variable configuration based on the official documentation:
Define Scripts
Now we define the scripts which Travis should execute:
Unit & E2E tests
Electron needs a display driver as it is based on Chromium. You cannot execute any of your tests (and Electron will fail to launch) if Chromium cannot find a display driver. To fix this issue, we need to use a virtual display driver like Xvfb.
Xvfb is a virtual framebuffer that enables our tests to run in memory without showing an actual screen.
On Linux, we need to run the NPM test script via xvfb-run yarn <NPM_SCRIPT_NAME>
on OS X and Windows Chromium is already correctly configured.
GitHub Release
By running yarn release:<OS>
from my package.json via electron-builder, I could automatically create a new release draft on the GitHub release page if the unit & E2E tests have passed:
Conclusion
I had to invest multiple hours in configuring Travis for my application. In the end, the time and effort were worth it.
New releases have passed my tests, and I can be sure that the application's basic functionality is working.
With These Tips You Will Rock Every Technical Job Interview
In my previous company, I got the opportunity to be one of 20 so-called "candidate interviewers". I participated in technical interviews, an essential part of this company's application procedure. I participated in about 30 interviews and learned a lot during this time, and I want to share my experiences with you. In my opinion, there are some rules to adhere to succeed in a technical interview.
Sticky Footer in GatsbyJS using Flexbox
I recently developed some static websites based on GatsbyJS with a sticky footer. A sticky footer is always positioned on the bottom of the page, even for sparse content.