Skip to content

Mocha inspired test framework for integration and system tests

License

Notifications You must be signed in to change notification settings

per-gron/overman

Repository files navigation

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

About

Mocha inspired test framework for integration and system tests

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published