mirror of
https://github.com/nasa/openmct.git
synced 2025-06-21 08:39:59 +00:00
[Representation] Add skeleton specs
Add empty specs for all scripts introduced for the representation component. WTD-521.
This commit is contained in:
@ -1,4 +1,5 @@
|
|||||||
[
|
[
|
||||||
"platform/framework",
|
"platform/framework",
|
||||||
"platform/core"
|
"platform/core",
|
||||||
|
"platform/representation"
|
||||||
]
|
]
|
15
platform/representation/test/MCTIncludeSpec.js
Normal file
15
platform/representation/test/MCTIncludeSpec.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MCTIncudeSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../src/MCTInclude"],
|
||||||
|
function (MCTInclude) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
15
platform/representation/test/MCTRepresentationSpec.js
Normal file
15
platform/representation/test/MCTRepresentationSpec.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../src/MCTRepresentation"],
|
||||||
|
function (MCTRepresentation) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
@ -0,0 +1,21 @@
|
|||||||
|
/*global define,Promise*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Module defining ContextMenuGestureSpec. Created by vwoeltje on 11/22/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/gestures/ContextMenuGesture"],
|
||||||
|
function (ContextMenuGesture) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @constructor
|
||||||
|
*/
|
||||||
|
function ContextMenuGestureSpec() {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
return ContextMenuGestureSpec;
|
||||||
|
}
|
||||||
|
);
|
15
platform/representation/test/gestures/DragGestureSpec.js
Normal file
15
platform/representation/test/gestures/DragGestureSpec.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DragGestureSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/gestures/DragGesture"],
|
||||||
|
function (DragGesture) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
15
platform/representation/test/gestures/DropGestureSpec.js
Normal file
15
platform/representation/test/gestures/DropGestureSpec.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DropGestureSpec. Created by vwoeltje on 11/6/14.
|
||||||
|
*/
|
||||||
|
define(
|
||||||
|
["../../src/gestures/DropGesture"],
|
||||||
|
function (DropGesture) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
7
platform/representation/test/suite.json
Normal file
7
platform/representation/test/suite.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
[
|
||||||
|
"gestures/ContextMenuGesture",
|
||||||
|
"gestures/DragGesture",
|
||||||
|
"gestures/DropGesture",
|
||||||
|
"MCTInclude",
|
||||||
|
"MCTRepresentation"
|
||||||
|
]
|
Reference in New Issue
Block a user