mirror of
https://github.com/nasa/openmct.git
synced 2025-02-18 16:40:58 +00:00
[Framework] Remove temporary file
Remove temporary script file (introduced for initial build/repository setup to illustrate naming conventions and test declaration) from framework sources. Completes implementation of framework layer for WTD-518.
This commit is contained in:
parent
6dea66558f
commit
3682eb73cb
@ -1,22 +0,0 @@
|
||||
/*global define*/
|
||||
|
||||
/**
|
||||
* This is a temporary file. It is present to verify
|
||||
* that build, including test scripts, can be executed.
|
||||
*/
|
||||
define(
|
||||
[],
|
||||
function () {
|
||||
"use strict";
|
||||
|
||||
function Temporary() {
|
||||
return {
|
||||
someMethod: function () {
|
||||
return "Hello, world.";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
return Temporary;
|
||||
}
|
||||
);
|
@ -1,17 +0,0 @@
|
||||
/*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.");
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
);
|
@ -1,5 +1,4 @@
|
||||
[
|
||||
"Temporary",
|
||||
"FrameworkInitializer",
|
||||
"bootstrap/ApplicationBootstrapper",
|
||||
"load/Bundle",
|
||||
|
Loading…
x
Reference in New Issue
Block a user