openmct/platform/commonUI/edit/test/actions/RemoveActionSpec.js
Victor Woeltjen 88f3221938 [Common UI] Add skeleton specs for edit mode
Add empty files which will contain specs for
bundle platform/commonUI/edit, which is responsible
for Edit mode. WTD-574.
2014-11-24 17:07:17 -08:00

12 lines
231 B
JavaScript

/*global define,describe,it,expect,beforeEach,jasmine*/
define(
["../../src/actions/RemoveAction"],
function (RemoveAction) {
"use strict";
describe("The Remove action", function () {
});
}
);