[Common UI] Add skeleton specs
Add skeleton specs for bundle platform/commonUI/general. WTD-574.
This commit is contained in:
18
platform/commonUI/general/test/ActionGroupControllerSpec.js
Normal file
18
platform/commonUI/general/test/ActionGroupControllerSpec.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/*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);
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user