mirror of
https://github.com/nasa/openmct.git
synced 2024-12-28 00:48:51 +00:00
aef6f44cb5
Add empty specs for CouchDB adapter. WTD-537.
20 lines
498 B
JavaScript
20 lines
498 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* DomainObjectProviderSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../src/CouchPersistenceProvider"],
|
|
function (CouchPersistenceProvider) {
|
|
"use strict";
|
|
|
|
describe("The couch persistence provider", function () {
|
|
var mockHttp,
|
|
mockQ,
|
|
testSpace = "testSpace",
|
|
testPath = "/test/db",
|
|
provider;
|
|
|
|
});
|
|
}
|
|
); |