Skip to content

Commit

Permalink
Merge branch 'stage' of https://github.com/andela/firestar-backend in…
Browse files Browse the repository at this point in the history
…to ft-signup-user-167730738
  • Loading branch information
zanio committed Sep 10, 2019
2 parents 4ae6d42 + dcc23b9 commit 9435db7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"one-var": 0,
"one-var-declaration-per-line": 0,
"new-cap": 0,
"no-useless-catch":0,
"consistent-return": 0,
"no-param-reassign": 0,
"comma-dangle": 0,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint": "eslint \"**/*.js\" --ignore-pattern node_modules/ --fix",
"clean": "rm -rf ./dist && mkdir dist",
"build": "npm run clean && babel ./src -d dist",
"heroku-postbuild": "npm run build && npm run undo:prod && npm run migrate:prod && sequelize db:seed:all",
"heroku-postbuild": "npm run build && npm run migrate:prod",
"start": "node dist/index.js",
"test:script": "cross-env NODE_ENV=development babel-node src/helpers/test.js",
"start:dev": "cross-env NODE_ENV=development nodemon --exec babel-node -- src/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/__tests__/routes/users/resetPassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const seedTestDb = async () => {
email: 'youremail3@andela.com',
expireTime: new Date(),
resetToken: '$2a$10$Yc4fNidn3ih0Z0wRajFhq.AwneQLYR2RWWYQT7PGJdJj4UN1BGJ1K'
}),
});

await db.resets.create({
email: 'youremail4@andela.com',
Expand Down Expand Up @@ -173,4 +173,4 @@ describe('Forgot and Reset Password Test', () => {
});
});
});
});
});

0 comments on commit 9435db7

Please sign in to comment.