mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
aef6f44cb5
Add empty specs for CouchDB adapter. WTD-537.
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* DomainObjectProviderSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../src/CouchDocument"],
|
|
function (CouchDocument) {
|
|
"use strict";
|
|
|
|
describe("A couch document", function () {
|
|
|
|
});
|
|
}
|
|
); |