openmct/platform/framework/test/TemporarySpec.js
Victor Woeltjen 047d56d662 [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.
2014-10-31 09:49:09 -07:00

17 lines
393 B
JavaScript

/*global define,describe,it,expect*/
define(
["../src/Temporary"],
function (Temporary) {
"use strict";
describe("Temporary class", function () {
var temporary = new Temporary();
it("has a method with a return value", function () {
expect(temporary.someMethod()).toEqual("Hello, world.");
});
});
}
);