aboutsummaryrefslogtreecommitdiffstats
path: root/test/directive/ngShowHideSpec.js
blob: 6b9aea240464989697288aaf6136c8f20e033d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'use strict';

describe('ng:show / ng:hide', function() {
  var element;


  afterEach(function() {
    dealoc(element);
  });

  describe('ng:show', function() {
    it('should show and hide an element', inject(function($rootScope, $compile) {
      element = jqLite('<div ng:show="exp"></div>');
      element = $compile(element)($rootScope);
      $rootScope.$digest();
      expect(isCssVisible(element)).toEqual(false);
      $rootScope.exp = true;
      $rootScope.$digest();
      expect(isCssVisible(element)).toEqual(true);
    }));


    it('should make hidden element visible', inject(function($rootScope, $compile) {
      element = jqLite('<div style="display: none" ng:show="exp"></div>');
      element = $compile(element)($rootScope);
      expect(isCssVisible(element)).toBe(false);
      $rootScope.exp = true;
      $rootScope.$digest();
      expect(isCssVisible(element)).toBe(true);
    }));
  });

  describe('ng:hide', function() {
    it('should hide an element', inject(function($rootScope, $compile) {
      element = jqLite('<div ng:hide="exp"></div>');
      element = $compile(element)($rootScope);
      expect(isCssVisible(element)).toBe(true);
      $rootScope.exp = true;
      $rootScope.$digest();
      expect(isCssVisible(element)).toBe(false);
    }));
  });
});