Files
openmct/platform/framework/test/TemporarySpec.js
Victor Woeltjen 0bf0912bf8 [Tests] Initial spec runner
Initial spec runner; looks in bundles, assumes conventions.
Supports initial repository set up and build scripts, for
WTD-519.
2014-10-30 17:24:30 -07:00

17 lines
391 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("returnValue");
});
});
}
);