This commit is contained in:
Sam Penrose 2013-08-07 11:06:16 -07:00
Родитель 8dbcfef41d
Коммит f74caad01a
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -41,9 +41,14 @@ describe('the server', function() {
}
publicKeyToCertify = keyPair.publicKey.serialize();
});
/*
var csfrResponse = request(app).get('/provision', function(err, res) {
console.log('CSF: '+res);
done();
});
return;*/
request(app)
.post('/provision', {email: 'lloyd@example.com', publicKey: publicKeyToCertify, duration: 1000*1000})
request(app).post('/provision', {email: 'lloyd@example.com', publicKey: publicKeyToCertify, duration: 1000*1000})
.expect('Content-Type', /json/)
.expect(/public-key/) // string or regex matching expected well-known json
.end(function(err, res){