readme update to install nodemon globally plus backend unit tests config file update

This commit is contained in:
Carlos Jimenez 2018-01-15 11:34:48 +01:00
parent d20c38e21e
commit 9be63950bb
2 changed files with 6 additions and 8 deletions

View File

@ -2,7 +2,7 @@
Salix is an Enterprise resource planning (ERP) integrated management of core business processes, in real-time and mediated by software and technology developed with the stack listed below.
Salix is aswell the scientific name of a beautifull tree! :)
Salix is also the scientific name of a beautifull tree! :)
### Prerequisites
@ -11,6 +11,7 @@ $ npm install -g karma
$ npm install -g karma-cli
$ npm install -g gulp
$ npm install -g webpack
$ npm install -g nodemon
install nginx globally.

View File

@ -17,13 +17,11 @@ var jasmine = new Jasmine();
var SpecReporter = require('jasmine-spec-reporter').SpecReporter;
jasmine.loadConfig({
spec_dir: 'services/',
spec_files: [
'**/specs/*[sS]pec.js'
'./services/**/*[sS]pec.js'
],
helpers: [
// to implement
// '/api/utils/jasmineHelpers.js'
'/services/utils/jasmineHelpers.js'
]
});
@ -36,6 +34,5 @@ jasmine.addReporter(new SpecReporter({
}
}));
exports.start = () => {
jasmine.execute();
};
jasmine.execute();