add test coverage for api notification mixin

This commit is contained in:
Jake McDermott
2019-06-14 09:24:54 -04:00
parent e72f0bcfd4
commit 4aa4490933
3 changed files with 38 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import Organizations from '../../src/api/models/Organizations';
import { describeNotificationMixin } from './reusable';
describe('OrganizationsAPI', () => {
const orgId = 1;
@@ -34,3 +35,5 @@ describe('OrganizationsAPI', () => {
done();
});
});
describeNotificationMixin(Organizations, 'Organizations[NotificationsMixin]');