NemoJS
- 12 Oct 2023
- 1 Minute to read
- Print
- DarkLight
NemoJS
- Updated on 12 Oct 2023
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
Nemo is both a framework and a set of established practices for automating the testing of web and even native applications. Its utility extends to various creative applications. A prevalent approach is to combine Nemo with a task runner like Grunt and a test runner like Mocha. However, Nemo is adaptable to different task and test runners as well.
Prerequisites
- Install Node.js and NPM: Make sure you have the latest version of Node.js and NPM installed on your system.
Installation and Setup
- Inside a new directory, run the following command to install required packages, including "Nemo", listed in package.json:
npm install
Configuration
- Personal Info: In "nemo.config.js", provide your personal details:
- pCloudy_Username: Your email address.
- pCloudy_ApiKey: Your API key.
Running the Test
To execute the Nemo test script:
- Open the terminal and navigate to the project directory.
- Run the following command:
npx nemo nemo.config.js
The complete sample and documentation are available in the pCloudy GitHub Repository : Github
Was this article helpful?