mirror of
https://github.com/nasa/openmct.git
synced 2025-06-01 07:00:49 +00:00
[Structure] Add comments to temporary files
Add clarifying comments to temporary files, to ensure they are distinguishable as placeholders. Part of developing project folder structure and build for WTD-519.
This commit is contained in:
parent
4f08d43037
commit
047d56d662
@ -1,10 +1,9 @@
|
|||||||
/**
|
|
||||||
* Created by vwoeltje on 10/30/14.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is a temporary file. It is present to verify
|
||||||
|
* that build, including test scripts, can be executed.
|
||||||
|
*/
|
||||||
define(
|
define(
|
||||||
[],
|
[],
|
||||||
function () {
|
function () {
|
||||||
@ -13,7 +12,7 @@ define(
|
|||||||
function Temporary() {
|
function Temporary() {
|
||||||
return {
|
return {
|
||||||
someMethod: function () {
|
someMethod: function () {
|
||||||
return "returnValue";
|
return "Hello, world.";
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ define(
|
|||||||
var temporary = new Temporary();
|
var temporary = new Temporary();
|
||||||
|
|
||||||
it("has a method with a return value", function () {
|
it("has a method with a return value", function () {
|
||||||
expect(temporary.someMethod()).toEqual("returnValue");
|
expect(temporary.someMethod()).toEqual("Hello, world.");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user