How to integrate meteor speed tests with jenkins?

The Velocity GH page mentions "easy CI integration" as one of the benefits, but I haven't seen any documentation about it.

How can I integrate speed with Jenkins?

+3


source to share


2 answers


You must use:

meteor - test

meteor run --test



This does the same as speed-ci with no additional setup

+4


source


You can try velocity-ci

speed-kli

NPM module for running your speed test suites from the command line

Installation

npm install -g speed-ci

Run

From inside the project directory, enter the speed

How it works

Speed-cli spawns a meteoric process and connects with it using DDP. PhantomJS hooks into the meteor process to run client tests. Test results obtained via DDP are printed to the console. This process exits with an appropriate exit status code.



Thus, the build step will be velocity

inside the meteors directory

+1


source







All Articles