mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
18 lines
511 B
JavaScript
18 lines
511 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
define(
|
||
|
["../src/ActionGroupController"],
|
||
|
function (ActionGroupController) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The domain object provider", function () {
|
||
|
var mockScope,
|
||
|
controller;
|
||
|
|
||
|
beforeEach(function () {
|
||
|
mockScope = jasmine.createSpyObj("$scope", ["$watch"]);
|
||
|
controller = new ActionGroupController(mockScope);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
);
|