Don't verify Danube and verify Euphrates
[releng.git] / utils / test / reporting / pages / test / spec / directives / mydirective.js
1 'use strict';
2
3 describe('Directive: myDirective', function () {
4
5   // load the directive's module
6   beforeEach(module('opnfvApp'));
7
8   var element,
9     scope;
10
11   beforeEach(inject(function ($rootScope) {
12     scope = $rootScope.$new();
13   }));
14
15   it('should make hidden element visible', inject(function ($compile) {
16     element = angular.element('<my-directive></my-directive>');
17     element = $compile(element)(scope);
18     expect(element.text()).toBe('this is the myDirective directive');
19   }));
20 });