openmct/platform/commonUI/edit/test/actions/SaveActionSpec.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
225 B
JavaScript

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