alert_tab_specs.ts 387 B

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