15 lines
353 B
JavaScript
15 lines
353 B
JavaScript
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
/**
|
|
* ContextualDomainObjectSpec. Created by vwoeltje on 11/6/14.
|
|
*/
|
|
define(
|
|
["../../src/capabilities/ContextualDomainObject"],
|
|
function (ContextualDomainObject) {
|
|
"use strict";
|
|
|
|
describe("A contextual domain object", function () {
|
|
|
|
});
|
|
}
|
|
); |