diff options
Diffstat (limited to 'test/lib/sendgrid.test.js')
-rw-r--r-- | test/lib/sendgrid.test.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lib/sendgrid.test.js b/test/lib/sendgrid.test.js index 32ad2be..d1e01c0 100644 --- a/test/lib/sendgrid.test.js +++ b/test/lib/sendgrid.test.js @@ -25,6 +25,10 @@ describe('SendGrid', function () { sendgrid = new SendGrid(API_USER, API_KEY); }); + it('version should be set', function() { + expect(sendgrid.version).to.equal("0.2.8"); + }); + describe('#send', function() { var payload, mock, webApi, postParams, postParamsString; |