Skip to main content

Setup Spark JS Framework

Install Node JS and NPM

Install node here, get the current LTS version. This should come with npm.

Verify the install by doing the following (each should output a version):

npm -v
node -v

Return to the Next Step of the Quick Start Guide

Install IDE

To edit and execute the test scenarios an IDE is required.

The Test Evolve team currently use Visual Studio Code, which has several plugins for formatting and executing Cucumber test scenarios.

We will also be providing forthcoming guides on a range of alternatives.

Return to the Next Step of the Quick Start Guide

Getting Started

Install Test Evolve - Flare (Studio Application)

  • Download/Setup

  • Create a new project

Running your first test

A Test Evolve JavaScript Project will contain a package.json file as below:

To run all tests within the features directory, open up a Terminal session in your IDE and execute the appropriate script command for your operating system.

npm run test

You can also use this method to execute specific feature files by extending the command with a full path reference as in the below example:

npm run test features/demo.feature