alert_tab_specs.ts 486 B

1234567891011121314151617181920
  1. import {describe, beforeEach, it, sinon, expect, angularMocks} from 'test/lib/common';
  2. import {AlertTabCtrl} from '../alert_tab_ctrl';
  3. import helpers from '../../../../test/specs/helpers';
  4. describe('AlertTabCtrl', () => {
  5. var $scope = {
  6. ctrl: {}
  7. };
  8. describe('with null parameters', () => {
  9. it('can be created', () => {
  10. var alertTab = new AlertTabCtrl($scope, null, null, null, null, null, null, null);
  11. expect(alertTab).to.not.be(null);
  12. });
  13. });
  14. });