mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 15:26:39 +00:00
13 lines
270 B
JavaScript
13 lines
270 B
JavaScript
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
||
|
|
||
|
|
||
|
define(
|
||
|
["../src/PersistenceQueueImpl"],
|
||
|
function (PersistenceQueueImpl) {
|
||
|
"use strict";
|
||
|
|
||
|
describe("The implemented persistence queue", function () {
|
||
|
|
||
|
});
|
||
|
}
|
||
|
);
|