Releases: nightwatchjs/nightwatch
Releases · nightwatchjs/nightwatch
v0.6.2
- Fixed a problem with reading a hook method name resulting in a
TypeError
.
v0.6.1
- Fixed a problem where errors during the tests were swolen in some cases
v0.6.0
Nightwatch v0.6
New features
- Unit testing - write unit or integration tests in Nightwatch for Node.js applications and APIs;
- Custom reporters - add your own reporter via the
--reporter
option; - Integrated Grunt support - Nightwatch is bundled with an easy to use Grunt task which can be used in your existing Grunt-based build configuration;
- Run single testcase - ability to run the specified testcase from the current suite/module via
--testcase
; - Page Objects - documented support for page objects model;
Enhancements
- Added support for declaring environment specific cli_args - #334
- Added support for passing the client object as argument to global beforeEach and afterEach
- Added support for always logging selenium server errors
- Added log functionality exposed through Selenium
Important fixes
v0.5.34
- Added - global
disable_colors
property - Added -
parallel_process_delay
property to specify the delay between starting child processes
v0.5.33
v0.5.32
- Added support for a global test results reporter function defined in the
globals
module configured inglobals_path
innightwatch.json
. A function defined under thereporter
key in the globals module is called after all tests finish with the nightwatch internal results object as an argument (as seen in examples/globalsModule.js). It may be asynchronous, with a 'done' callback as the reporter's second argument.
v0.5.31
- Added
perform
command which allows adding arbitrary code to the queue