This commit is contained in:
Girish Ramakrishnan
2018-11-10 00:22:38 -08:00
parent fcb7c3e82a
commit 71e1e2468b

View File

@@ -26,6 +26,10 @@ const DOMAIN_0 = {
tlsConfig: { provider: 'fallback' }
};
const AUDIT_SOURCE = {
ip: '1.2.3.4'
};
const APPSTORE_USER_ID = 'appstoreuserid';
const APPSTORE_TOKEN = 'appstoretoken';
const CLOUDRON_ID = 'cloudronid';
@@ -122,7 +126,7 @@ describe('Mail', function () {
});
it('can enable mail', function (done) {
mail.setMailEnabled(DOMAIN_0.domain, true, function (error) {
mail.setMailEnabled(DOMAIN_0.domain, true, AUDIT_SOURCE, function (error) {
expect(error).to.be(null);
mail.getDomain(DOMAIN_0.domain, function (error, mailConfig) {