add constants file, update jobs and test

This commit is contained in:
2016-04-18 17:57:17 -07:00
parent b2ff6bc291
commit e88695a989
3 changed files with 12 additions and 5 deletions

7
src/helpers/constants.js Normal file
View File

@@ -0,0 +1,7 @@
const constants = {
JOB_STATUS_PENDING: 0,
JOB_STATUS_PROCESSING: 1,
JOB_STATUS_COMPLETED: 2,
};
export default constants;