Skip to content

Releases: nightwatchjs/create-nightwatch

v3.2.1

24 Oct 10:52
7c3fcd5
Compare
Choose a tag to compare

v3.1.0

22 Sep 09:05
e1421d1
Compare
Choose a tag to compare
3.1.0

V1.5.3

17 May 13:44
Compare
Choose a tag to compare

Fixes

  • npm init nightwatch error when running adblocker if usage metrics options enabled (#88)

V1.5.2

13 Feb 22:06
Compare
Choose a tag to compare

v1.1.2

04 Aug 10:56
Compare
Choose a tag to compare

Fixes

  • Unable to parse tsconfig.json file when initializing Nightwatch in an existing TypeScript project - #32

v1.1.1

21 Jul 07:25
Compare
Choose a tag to compare

Features

  • Added two template tests to help new users write their first test with Nightwatch - #25.

    image

Fixes

  • Make the configuration file generated on Windows compatible with other platforms such as Linux & Mac OS - nightwatchjs/nightwatch#3273
  • --browser flag argument shouldn't be considered as the main argument while using npm init nightwatch command - #27
  • Default browser is configured correctly if a single browser is passed through --browser flag - #30

v1.0.0

21 Jun 09:22
Compare
Choose a tag to compare

This release adds a lot of improvements to the create-nightwatch tool.

Improvements

  • Added --browser flag (alias -b) to pass the browsers to be used directly from the CLI - #18.
    Usage:
    npm init nightwatch -- --browser chrome --browser firefox
    # with alias
    npm init nightwatch -- -b chrome -b firefox
    # with yes flag and alias
    npm init nightwatch -- --yes -b chrome -b firefox
  • Added question to choose between the cloud providers when remote is selected, and added config for Sauce Labs - 183377f.
    image

Examples

  • Added examples for custom-commands, custom-assertions, and page-objects.
  • Modified the structure of examples and added comments in the examples, so that they are easy to read and understand.
  • Examples can now be used as boilerplate for writing tests.
  • Fixed failing ecosia.js example.

Other

  • If the npm init nightwatch command is run inside a directory which is not a node project but already contains some files, the tool will now ask for confirmation before initializing the Nightwatch project in that directory - #10.
    image

  • Updated the dependencies, fixing vulnerabilities - #16.

  • Removed support for Internet Explorer - 74cfe86.

  • Added suggestions if the user passes wrong flags in the CLI - #18.
    image

  • Updated the configuration file, along with all the documentation links inside the configuration file.