15 lines
350 B
JavaScript
15 lines
350 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* PersistenceCapabilitySpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../../src/capabilities/PersistenceCapability"],
|
|
function (PersistenceCapability) {
|
|
"use strict";
|
|
|
|
describe("The persistence capability", function () {
|
|
|
|
});
|
|
}
|
|
); |