mirror of
https://github.com/nasa/openmct.git
synced 2025-06-13 04:38:15 +00:00
[Tests] Initial spec runner
Initial spec runner; looks in bundles, assumes conventions. Supports initial repository set up and build scripts, for WTD-519.
This commit is contained in:
23
platform/framework/src/Temporary.js
Normal file
23
platform/framework/src/Temporary.js
Normal file
@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Created by vwoeltje on 10/30/14.
|
||||
*/
|
||||
|
||||
|
||||
/*global define*/
|
||||
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
function Temporary() {
|
||||
return {
|
||||
someMethod: function () {
|
||||
return "returnValue";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
return Temporary;
|
||||
}
|
||||
);
|
Reference in New Issue
Block a user