mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 15:02:23 +00:00
b25c9731cf
WTD-1033.
16 lines
469 B
JavaScript
16 lines
469 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
|
|
define(
|
|
["../src/PersistenceFailureConstants"],
|
|
function (PersistenceFailureConstants) {
|
|
"use strict";
|
|
|
|
describe("Persistence failure constants", function () {
|
|
it("defines an overwrite key", function () {
|
|
expect(PersistenceFailureConstants.OVERWRITE_KEY)
|
|
.toEqual(jasmine.any(String));
|
|
});
|
|
});
|
|
}
|
|
); |