From 668a1e4534fe7de32be082488fa8e883240b7c58 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 20 Feb 2015 15:29:37 -0800 Subject: [PATCH] [Fixed Position] Add empty specs Add empty specs for classes introduced in support of Add menu options for fixed position view, WTD-880. --- .../layout/test/elements/ElementFactorySpec.js | 11 +++++++++++ .../features/layout/test/elements/LineProxySpec.js | 11 +++++++++++ platform/features/layout/test/suite.json | 2 ++ 3 files changed, 24 insertions(+) create mode 100644 platform/features/layout/test/elements/ElementFactorySpec.js create mode 100644 platform/features/layout/test/elements/LineProxySpec.js diff --git a/platform/features/layout/test/elements/ElementFactorySpec.js b/platform/features/layout/test/elements/ElementFactorySpec.js new file mode 100644 index 0000000000..795a06f314 --- /dev/null +++ b/platform/features/layout/test/elements/ElementFactorySpec.js @@ -0,0 +1,11 @@ +/*global define,describe,it,expect,beforeEach,jasmine*/ + +define( + ['../../src/elements/ElementFactory'], + function (ElementFactory) { + "use strict"; + + describe("The fixed position element factory", function () { + }); + } +); \ No newline at end of file diff --git a/platform/features/layout/test/elements/LineProxySpec.js b/platform/features/layout/test/elements/LineProxySpec.js new file mode 100644 index 0000000000..08cba55b6e --- /dev/null +++ b/platform/features/layout/test/elements/LineProxySpec.js @@ -0,0 +1,11 @@ +/*global define,describe,it,expect,beforeEach,jasmine*/ + +define( + ['../../src/elements/LineProxy'], + function (LineProxy) { + "use strict"; + + describe("A fixed position line proxy", function () { + }); + } +); \ No newline at end of file diff --git a/platform/features/layout/test/suite.json b/platform/features/layout/test/suite.json index af82513e01..c895900595 100644 --- a/platform/features/layout/test/suite.json +++ b/platform/features/layout/test/suite.json @@ -5,7 +5,9 @@ "LayoutDrag", "LayoutSelection", "elements/AccessorMutator", + "elements/ElementFactory", "elements/ElementProxies", "elements/ElementProxy", + "elements/LineProxy", "elements/TelemetryProxy" ] \ No newline at end of file