JSPM

codeceptjs

0.1.2
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 270799
  • Score
    100M100P100Q166042F
  • License MIT

Modern Era Aceptance Testing Framework for NodeJS

Package Exports

  • codeceptjs
  • codeceptjs/bin/codecept
  • codeceptjs/lib/actor
  • codeceptjs/lib/assert/error
  • codeceptjs/lib/codecept
  • codeceptjs/lib/command/utils
  • codeceptjs/lib/container
  • codeceptjs/lib/event
  • codeceptjs/lib/helper
  • codeceptjs/lib/helper/WebDriverIO
  • codeceptjs/lib/output
  • codeceptjs/lib/pause
  • codeceptjs/lib/scenario
  • codeceptjs/lib/utils

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (codeceptjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

codeceptjs NPM version Build Status Dependency Status Coverage percentage

Modern Era Aceptance Testing Framework for NodeJS

Install

$ npm install -g codeceptjs

Usage

codeceptjs init

WIP

Examples

var assert = require('assert');
Feature('CodeceptJS Demonstration');

Scenario('test some forms', (I) => {
  I.amOnPage('http://simple-form-bootstrap.plataformatec.com.br/documentation');
  I.fillField('Email', 'hello@world.com');
  I.fillField('Password', '123456');
  I.checkOption('Active');
  I.checkOption('Male');  
  I.click('Create User');
  I.see('User is valid');
  I.dontSeeInCurrentUrl('/documentation');
});

WIP

License

MIT © DavertMik