Nightwatch configuration

Once you’ve installed nightwatch, you will need to create a configuration file. Configuration file can be saved as .json file or .js file. You can choose any of option and both will do the job, but I prefer .js file, because it can contain custom variables and comments. Comments in configuration file can be helpful […]

Read more
Install Nightwatch on Windows

Introducing Nightwatch.js Nightwatch.js is a testing solution that lets you use JavaScript to write browser-based, end-to-end tests. Nightwatch can also be used for writing Node.js unit tests. Nightwatch is written in Node.js and using the W3C WebDriver API (formerly Selenium WebDriver). Installation: Similar Posts from the author: Nightwatch configuration Dane Dukić

Read more
Test Frameworks to work with inside NodeJS

Testing with NodeJS requires some test framework to work with inside NodeJS. Our list would be something like this: Mocha Jasmine QUnit Express (no longer supported) jsUnit some other tools Lets focus on the first three now in this section, they are the most widely used, with some pros and cons. Starting wit the oldest, […]

Read more