1
0
Fork 0
arangodb/js/apps/system/aardvark/test/specs/models/arangoStatisticsDescription...

17 lines
422 B
JavaScript

/*jshint browser: true */
/*jshint unused: false */
/*global describe, beforeEach, afterEach, it, spyOn, expect*/
/*global $*/
(function() {
"use strict";
describe("Arango Statistics Model", function() {
it("verifies url", function() {
var myStatisticsDescription = new window.StatisticsDescription();
expect(myStatisticsDescription.url())
.toEqual("/_admin/statistics-description");
});
});
}());