alert_tab_specs.ts 389 B

1234567891011121314151617
  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. });