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