update module - #1835
Open
lightmild wants to merge 1 commit into
Open
Conversation
update module
houndci-bot
reviewed
Jun 7, 2018
| }); | ||
| }); | ||
|
|
||
| it("#02. should error when create new data with end < start ", function (done) { |
| }) | ||
| }); | ||
|
|
||
| it("#01. should error when create new data with empty data", function (done) { |
|
|
||
| var moment = require('moment'); | ||
|
|
||
| before('#00. connect db', function (done) { |
|
|
||
|
|
||
|
|
||
| var moment = require('moment'); |
| var Manager = require("../../../src/managers/sp-master-plan/working-capacities-standard-manager"); | ||
| var manager = null; | ||
| var dataUtil =require("../../data-util/sp-master-plan/working-capacities-standard-data-util"); | ||
| var validate = require("dl-models").validator.spMasterPlan.workingCapacitiesStandard; |
| .then((id) => { | ||
| done("should error when create new data with end < start"); | ||
| }) | ||
| .catch((e) => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
| data.start=10; | ||
| data.end=5; | ||
| manager.create(data) | ||
| .then((id) => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
|
|
||
| it("#02. should error when create new data with end < start ", function (done) { | ||
| dataUtil.getNewData() | ||
| .then((data) => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
| .then((id) => { | ||
| done("should error when create new data with empty data"); | ||
| }) | ||
| .catch((e) => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
|
|
||
| it("#01. should error when create new data with empty data", function (done) { | ||
| manager.create({}) | ||
| .then((id) => { |
There was a problem hiding this comment.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
update module