Test runner for integration tests


Keywords
test, runner, integration, parallel
License
Apache-2.0
Install
npm install overman@1.0.5

Documentation

Overman

Node.js CI

Mocha inspired test framework for integration and system tests.

Changelog

1.x

  • Suite runner function is now exported as default from package main.
  • Other exported symbols are exported separately.
- import overman = require('overman');
- new overman.reporters.Summary(process.stdout);

+ import overman, { reporters } from 'overman';
+ new reporters.Summary(process.stdout);
  • Options.timeoutTimer is replaced by Options.timerFactory
- suiteRunner({ timeoutTimer: MyTimerClass });
+ suiteRunner({ timerFactory: (timeout) => new MyTimerClass(timeout) });
  • Suite runner (module default export) now returns a pure Promise. Cancellation is done by providing a signal: AbortSignal in Options.

  • Drop support for Generator functions