diff options
author | scottmotte <scott@scottmotte.com> | 2013-07-18 20:08:37 +0000 |
---|---|---|
committer | scottmotte <scott@scottmotte.com> | 2013-07-18 20:26:38 +0000 |
commit | 2cdec8b2019d182a09788d41bb4824f484a026fd (patch) | |
tree | b28fe242552071c86514e1bdb1d16cecab5ad909 /lib/sendgrid.js | |
parent | a24874ab53d88d3b218937b5d8d10d361ad016ef (diff) | |
download | sendgrid-nodejs-2cdec8b2019d182a09788d41bb4824f484a026fd.zip sendgrid-nodejs-2cdec8b2019d182a09788d41bb4824f484a026fd.tar.gz sendgrid-nodejs-2cdec8b2019d182a09788d41bb4824f484a026fd.tar.bz2 |
Use stub for integration tests
Diffstat (limited to 'lib/sendgrid.js')
-rw-r--r-- | lib/sendgrid.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendgrid.js b/lib/sendgrid.js index 9635340..9eed1fe 100644 --- a/lib/sendgrid.js +++ b/lib/sendgrid.js @@ -11,7 +11,7 @@ var Email = require('./email'); var SMTP = "SMTP"; if (process.env.NODE_ENV == "test") { - //SMTP = "STUB"; + SMTP = "STUB"; } /* * Class for handling communications with SendGrid. |