4 posts

Testing

More CI for Flutter with GitHub Actions - Code Coverage

More CI for Flutter with GitHub Actions - Code Coverage

Adam Cooper

This is a follow up to my previous post on getting started with Flutter and GitHub Actions, if you haven't worked with Actions before you might want to start there. In the previous post we set up a simple CI pipeline to build my Fructika app with three steps (build, analyze and test) running on an Ubuntu Linux VM , the YAML for which looks like this. on: push jobs: build-and-test:

Flutter GitHub Actions Testing
Continuous Integration for Flutter with GitHub Actions

Continuous Integration for Flutter with GitHub Actions

Adam Cooper

The nice folks over at GitHub (or the evil Microsoft empire, depending on your point of view) recently added me to the GitHub Actions beta. If you're unfamiliar with GitHub Actions it's their Continuous Integration (CI) & Continuous Deployment (CD) pipeline or to quote  from the feature page: GitHub Actions makes it easy to automate all your software workflows,  now with world-class CI/CD. Build, test, and deploy your code right

Flutter Getting Started Testing GitHub Actions
How to port a WebdriverIO project to TypeScript

How to port a WebdriverIO project to TypeScript

Adam Cooper

WebDriverIO is an amazing tool for driving Selenium tests from Node.js that we’ve been using at LivingLens to replace our tedious manual testing plans with automated happiness. When the project started we were using Babel to give us access to ES2015 features but the extra intellisense and optional static typing features of TypeScript proved too tempting to resist so I set out to investigate how easy it is

JavaScript Testing TypeScript

A quick look at Smart Unit Tests

Adam Cooper

Looking at the latest Visual Studio 2015 CTP release I noticed the new Smart Unit Tests feature. This is an evolution of Microsoft Research’s Pex project and to quote Microsoft: Smart Unit Tests explores your .NET code to generate test data and a suite of unit tests That sounds pretty amazing, so I fired VS 2015 to have a look. I grabbed a piece of sample code that I

Testing