From f76d55b1d2cbfa36bcf92c2bb2ac98c86505522a Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 17 Jan 2017 08:26:59 +0900 Subject: [WIP] test --- src/api/private/signup.ts | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/api/private/signup.ts b/src/api/private/signup.ts index 592dfcceb1..34e98db284 100644 --- a/src/api/private/signup.ts +++ b/src/api/private/signup.ts @@ -5,6 +5,7 @@ import recaptcha = require('recaptcha-promise'); import User from '../models/user'; import { validateUsername } from '../models/user'; import serialize from '../serializers/user'; +import config from '../../conf'; recaptcha.init({ secret_key: config.recaptcha.secretKey @@ -12,11 +13,14 @@ recaptcha.init({ export default async (req: express.Request, res: express.Response) => { // Verify recaptcha - const success = await recaptcha(req.body['g-recaptcha-response']); + // ただしテスト時はこの機構は障害となるため無効にする + if (process.env.NODE_ENV !== 'test') { + const success = await recaptcha(req.body['g-recaptcha-response']); - if (!success) { - res.status(400).send('recaptcha-failed'); - return; + if (!success) { + res.status(400).send('recaptcha-failed'); + return; + } } const username = req.body['username']; -- cgit v1.2.3-freya