mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
047d56d662
Add clarifying comments to temporary files, to ensure they are distinguishable as placeholders. Part of developing project folder structure and build for WTD-519.
17 lines
393 B
JavaScript
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.");
|
|
});
|
|
});
|
|
|
|
}
|
|
); |