Added support for grouping tasks by challenge (#8469)

* Added support for grouping tasks by chllenge

* Fixed tests and updated default challenge model name

* Fixed broken member test

* Updated setting string

* Changed to shortName

* Began abstracting task grouping

* Added initial task directive code

* Added new directives to help with grouping of tasks

* Removed random console.log
This commit is contained in:
Keith Holliday
2017-02-27 11:34:03 -07:00
committed by GitHub
parent 44f23a7675
commit 30954fe7c5
21 changed files with 182 additions and 42 deletions

View File

@@ -117,7 +117,9 @@ describe('POST /challenges/:challengeId/leave', () => {
});
expect(testTask).to.not.be.undefined;
expect(testTask.challenge).to.eql({});
expect(testTask.challenge).to.eql({
shortName: 'None',
});
});
});
});