mirror of
https://github.com/nasa/openmct.git
synced 2025-01-18 02:39:56 +00:00
[Forms] Add skeleton specs
Add skeleton specs for scripts from the Forms component. WTD-530.
This commit is contained in:
parent
b60a5ae7c1
commit
29c5a7aaba
12
platform/forms/test/MCTControlSpec.js
Normal file
12
platform/forms/test/MCTControlSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/MCTControl"],
|
||||||
|
function (MCTControl) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The mct-control directive", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
12
platform/forms/test/MCTFormSpec.js
Normal file
12
platform/forms/test/MCTFormSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../src/MCTForm"],
|
||||||
|
function (MCTForm) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The mct-form directive", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
12
platform/forms/test/controllers/DateTimeControllerSpec.js
Normal file
12
platform/forms/test/controllers/DateTimeControllerSpec.js
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||||
|
|
||||||
|
define(
|
||||||
|
["../../src/controllers/DateTimeController"],
|
||||||
|
function (DateTimeController) {
|
||||||
|
"use strict";
|
||||||
|
|
||||||
|
describe("The date-time directive", function () {
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
5
platform/forms/test/suite.json
Normal file
5
platform/forms/test/suite.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
[
|
||||||
|
"MCTControl",
|
||||||
|
"MCTForm",
|
||||||
|
"controllers/DateTimeController"
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user