GitXplorerGitXplorer
l

replaceString

public
0 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
1e8e94f86f58133a910db26bd7a432d561b2d50f

Update README.md

lluisecm committed 2 years ago
Verified
9c1405eff76190a88c08b594b5cf88986d7e9ade

Add files via upload

lluisecm committed 3 years ago
Verified
1d33f1534859e0b589ca9aebf9021ab9b8e93d2d

Update README.md

lluisecm committed 3 years ago
Verified
26772647baedbc7a6c93a6728d245de7c8b1359e

Update README.md

lluisecm committed 3 years ago
Verified
c2330bf831ac1cc9e17cc63ff0d88a45090565c0

Initial commit

lluisecm committed 3 years ago

README

The README file for this repository.

replaceString simple project

Small NodeJS code with mocha/chai to test replacing each char in a string with the next char in alphabet

Steps to install and execute the tests:

  1. Install node.js npm install --save -dev

  2. Initialize project npm init

  3. Install mocha and chai dependencies npm install mocha --save -include=dev

npm install chai --save -include=dev

  1. Modify package.json
"scripts": {
    "test": "mocha"
  }
  1. To execute the test cases, the following instruction is executed in terminal: npm test