mirror of https://gitee.com/bigwinds/arangodb
21 lines
355 B
JavaScript
21 lines
355 B
JavaScript
/*jslint indent: 2, nomen: true, maxlen: 100, white: true plusplus: true, browser: true*/
|
|
/*global describe, beforeEach*/
|
|
(function() {
|
|
"use strict";
|
|
|
|
describe("Graph View", function() {
|
|
|
|
var view,
|
|
div;
|
|
|
|
beforeEach(function() {
|
|
div = document.createElement("div");
|
|
div.id = "content";
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}());
|