From 1753aa67843806419712bc59ab507dc6938976c8 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Wed, 3 Dec 2014 14:04:44 -0800 Subject: [PATCH] [Forms] Add placeholder spec for Locator Add placeholder spec for the LocatorController, introduced to support forms used from the Create menu. Part of ongoing integration of forms bundle, WTD-593. --- .../browse/test/creation/LocatorControllerSpec.js | 15 +++++++++++++++ platform/commonUI/browse/test/suite.json | 1 + 2 files changed, 16 insertions(+) create mode 100644 platform/commonUI/browse/test/creation/LocatorControllerSpec.js diff --git a/platform/commonUI/browse/test/creation/LocatorControllerSpec.js b/platform/commonUI/browse/test/creation/LocatorControllerSpec.js new file mode 100644 index 0000000000..a81ae49359 --- /dev/null +++ b/platform/commonUI/browse/test/creation/LocatorControllerSpec.js @@ -0,0 +1,15 @@ +/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/ + +/** + * MCTRepresentationSpec. Created by vwoeltje on 11/6/14. + */ +define( + ["../../src/creation/LocatorController"], + function (LocatorController) { + "use strict"; + + describe("The locator controller", function () { + + }); + } +); \ No newline at end of file diff --git a/platform/commonUI/browse/test/suite.json b/platform/commonUI/browse/test/suite.json index d99b79dedf..e07b05d440 100644 --- a/platform/commonUI/browse/test/suite.json +++ b/platform/commonUI/browse/test/suite.json @@ -6,6 +6,7 @@ "creation/CreateMenuController", "creation/CreateWizard", "creation/CreationService", + "creation/LocatorController", "navigation/NavigateAction", "navigation/NavigationService", "windowing/FullscreenAction"