mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
12 lines
225 B
JavaScript
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 () {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|