mirror of
https://github.com/nasa/openmct.git
synced 2025-01-03 11:54:10 +00:00
12 lines
231 B
JavaScript
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 () {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|