[Representation] Add skeleton specs
Add empty specs for all scripts introduced for the representation component. WTD-521.
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/*global define,Promise*/
|
||||
|
||||
/**
|
||||
* Module defining ContextMenuGestureSpec. Created by vwoeltje on 11/22/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/gestures/ContextMenuGesture"],
|
||||
function (ContextMenuGesture) {
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
*
|
||||
* @constructor
|
||||
*/
|
||||
function ContextMenuGestureSpec() {
|
||||
return {};
|
||||
}
|
||||
|
||||
return ContextMenuGestureSpec;
|
||||
}
|
||||
);
|
||||
15
platform/representation/test/gestures/DragGestureSpec.js
Normal file
15
platform/representation/test/gestures/DragGestureSpec.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* DragGestureSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/gestures/DragGesture"],
|
||||
function (DragGesture) {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
15
platform/representation/test/gestures/DropGestureSpec.js
Normal file
15
platform/representation/test/gestures/DropGestureSpec.js
Normal file
@@ -0,0 +1,15 @@
|
||||
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||||
|
||||
/**
|
||||
* DropGestureSpec. Created by vwoeltje on 11/6/14.
|
||||
*/
|
||||
define(
|
||||
["../../src/gestures/DropGesture"],
|
||||
function (DropGesture) {
|
||||
"use strict";
|
||||
|
||||
describe("", function () {
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
Reference in New Issue
Block a user