Skip to content
Snippets Groups Projects
Commit c7bfd38f authored by Vytor Calixto's avatar Vytor Calixto :space_invader:
Browse files

Fix CI build

parent 2541d274
No related branches found
No related tags found
1 merge request!116Release v1.0.0
Pipeline #
...@@ -49,8 +49,8 @@ describe('Query middleware', () => { ...@@ -49,8 +49,8 @@ describe('Query middleware', () => {
if (error) { throw new Error('Expected not to receive an error'); } if (error) { throw new Error('Expected not to receive an error'); }
req.should.have.property('result'); req.should.have.property('result');
req.result.should.not.be.undefined; req.result.should.not.be.undefined;
req.result[0].should.have.property('sql_add_single_value'); req.result[0].should.have.property('L2');
req.result[0].sql_add_single_value.should.be.equal(3); req.result[0].L2.should.be.equal(3);
done(); done();
}); });
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment