owl-bt
Version:
owl-bt is editor for Behavior trees. It has been inspired by Unreal engine behavior trees in a way, that it supports special node items like decorators and services. This makes trees smaller and much more readable.
22 lines (16 loc) • 464 B
JavaScript
;
describe('Controller: TreeCtrl', function () {
// load the controller's module
beforeEach(() => angular.mock.module('editorApp'));
var TreeCtrl, scope;
// Initialize the controller and a mock scope
beforeEach(() => inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
TreeCtrl = $controller('TreeCtrl', {
$scope: scope
});
}));
it('should ...', function () {
expect(1).toEqual(1);
});
});