fix(config): bring back signin confirmation in dev (#1830)

This commit is contained in:
Vlad Filippov 2017-04-17 15:33:45 -04:00 коммит произвёл GitHub
Родитель c8dece9378
Коммит e9f8c2357b
3 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -13,4 +13,4 @@ STATSD_SAMPLE_RATE=1
TRUSTED_JKUS=http://127.0.0.1:8080/.well-known/public-keys,http://127.0.0.1:10139/.well-known/public-keys
VERIFICATION_REMINDER_RATE=1
VERIFIER_VERSION=0
IP_PROFILING_ENABLED=false
IP_PROFILING_RECENCY=0

Просмотреть файл

@ -82,7 +82,7 @@ describe('remote account reset', function() {
.then(
function () {
// make sure we can still login after password reset
return client.login(email, newPassword, {keys:true})
return Client.loginAndVerify(config.publicUrl, email, newPassword, server.mailbox, {keys:true})
}
)
.then(
@ -163,7 +163,7 @@ describe('remote account reset', function() {
.then(
function () {
// make sure we can still login after password reset
return client.login(email, newPassword, {keys:true})
return Client.loginAndVerify(config.publicUrl, email, newPassword, server.mailbox, {keys:true})
}
)
.then(

Просмотреть файл

@ -80,7 +80,7 @@ describe('remote flow', function() {
'e': '65537'
}
var duration = 1000 * 60 * 60 * 24 // 24 hours
return Client.login(config.publicUrl, email, password, server.mailbox, {keys:true})
return Client.loginAndVerify(config.publicUrl, email, password, server.mailbox, {keys:true})
.then(
function (x) {
client = x