Skip to content

Latest commit

 

History

History

codeceptJS

This repo contains CodeceptJS tests for TodoMVC application with Testomat.io plugins

Installation

This is a playground for your first steps in testing, so instead of installing it from NPM it is recommended to clone it from repo instead.

  1. Clone this repository
git clone [email protected]:testomatio/examples.git && cd examples/codeceptJS
  1. Install dependencies via npm:
npm i

This will install codeceptjs with puppeteer & Testomat.io reporter

Loading Tests to Testomat.io

  1. Create empty project in Testomat.io
  2. Obtain API key from Testomat.io
  3. Run npx check-tests to upload tests data into testomat.io. Pass api key as TESTOMATIO environment variable:
TESTOMATIO={apiKey} npx check-tests codeceptjs "**/*{.,_}test.js"  -d todomvc_tests

Environment variables It is recommended to store Testomatio API Key as environment variable and never save it in the source code. Set them directly when running tests or use dotenv package to save environment variable in a file and load them for tests.

Publishing Test Results to Testomat.io

Get API key from a project in Testomat.io and set it as environment variable TESTOMATIO:

TESTOMATIO={apiKey} npx codeceptjs run --steps --grep "Mark as completed"

Configuration

Testomatio repoter is a plugin and should be enabled in codecept.conf.js:

Do not hard code apiKey and always use it as environment variable.

plugins: {
  testomatio: {
    enabled: true,
    require: '@testomatio/reporter/lib/adapter/codecept',
    apiKey: process.env.TESTOMATIO,
  },
},