describe("xdashangular.index.header module", function() {
|
var scope;
|
|
beforeEach(angular.mock.module("xdashangular.index.header", function() {
|
}));
|
|
beforeEach(angular.mock.inject(function($rootScope) {
|
scope = $rootScope.$new();
|
}));
|
|
describe("header-notification directive", function() {
|
|
var element;
|
|
beforeEach(angular.mock.inject(function ($compile) {
|
element = angular.element('<div headernotification></div>');
|
$compile(element)(scope);
|
scope.$digest();
|
}));
|
|
it("should be tested", function() {
|
expect(true).toEqual(false);
|
});
|
|
});
|
|
});
|