forked from actionsdemos/calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Calculator.js: a node.js Demonstration Project | ||
============================================== | ||
An example node.js project, including tests with mocha, that behaves like | ||
a pocket calculator. | ||
|
||
The project contains a simple node.js application that exposes REST APIs | ||
to perform arithmetic on integers, and provides a test suite with mocha | ||
and chai. The `mocha-junit-reporters` package is included to provide XML | ||
output that can be presented in a continuous integration tool like | ||
[Azure DevOps](https://azure.com/devops). | ||
|
||
To build, simply: | ||
|
||
1. Runs `npm install` to install dependencies. | ||
2. Runs `npm test` to run Mocha and execute the unit tests. | ||
|