diff --git a/platform/forms/test/MCTControlSpec.js b/platform/forms/test/MCTControlSpec.js new file mode 100644 index 0000000000..39813afed6 --- /dev/null +++ b/platform/forms/test/MCTControlSpec.js @@ -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 () { + + }); + } +); \ No newline at end of file diff --git a/platform/forms/test/MCTFormSpec.js b/platform/forms/test/MCTFormSpec.js new file mode 100644 index 0000000000..2d64065c29 --- /dev/null +++ b/platform/forms/test/MCTFormSpec.js @@ -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 () { + + }); + } +); \ No newline at end of file diff --git a/platform/forms/test/controllers/DateTimeControllerSpec.js b/platform/forms/test/controllers/DateTimeControllerSpec.js new file mode 100644 index 0000000000..96039710d0 --- /dev/null +++ b/platform/forms/test/controllers/DateTimeControllerSpec.js @@ -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 () { + + }); + } +); \ No newline at end of file diff --git a/platform/forms/test/suite.json b/platform/forms/test/suite.json new file mode 100644 index 0000000000..b86d7b9178 --- /dev/null +++ b/platform/forms/test/suite.json @@ -0,0 +1,5 @@ +[ + "MCTControl", + "MCTForm", + "controllers/DateTimeController" +] \ No newline at end of file