We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53eb08a commit a20a7d5Copy full SHA for a20a7d5
test/bitgoExpress.js
@@ -170,7 +170,7 @@ describe('Bitgo Express', function() {
170
it('send coins - wallet1 to wallet3', function(done) {
171
agent.post('/api/v1/user/unlock')
172
.set('Authorization', 'Bearer ' + TestBitGo.TEST_ACCESSTOKEN)
173
- .send({ otp: '0000000', duration: 5 })
+ .send({ otp: '0000000', duration: 10 })
174
.expect('Content-Type', /json/)
175
.end(function(err, res) {
176
if (err) { throw err; }
@@ -182,7 +182,7 @@ describe('Bitgo Express', function() {
182
183
184
185
- res.should.have.status(200);
+ res.status.should.equal(200);
186
res.body.should.have.property('tx');
187
res.body.should.have.property('hash');
188
res.body.should.have.property('fee');
0 commit comments