Blame view

bower_components/Materialize/tests/spec/toast/toastSpec.js 2 KB
a1a3bc73   Luigi Serra   graphs updates
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  describe( 'Toasts:', function() {
    var toastOutDuration = 375;
    var toastInDuration = 300;
    var toast;
  
    describe('Toast javascript functions', function() {
      // Toast out animation duration does not count as part of its timer.
      it('should display and remove a toast', function(done) {
        Materialize.toast('Test toast', toastInDuration);
  
        setTimeout(function() {
          toast = $('.toast');
          expect(toast.length).toBe(1);
          expect(toast).toBeVisible();
          expect(toast.text()).toBe('Test toast');
          setTimeout(function() {
            toast = $('.toast');
            expect(toast).toBeVisible();
            expect(toast.length).toBe(1, 'because toast duration still on going');
            setTimeout(function() {
              toast = $('.toast');
              expect(toast.length).toBe(0, 'because toast should be removed by now');
              done();
            }, toastOutDuration + 90); // .1s leeway is given
          }, 10);
        }, toastInDuration);
      });
  
      it('Opens a toast with HTML content', function() {
        var $toastContent = $('<span>I am toast content</span>');
        Materialize.toast($toastContent, 400);
        toast = $('.toast');
        expect(toast.first('span').text()).toBe('I am toast content');
        expect(toast.first('span').text()).not.toBe('I am toast')
      });
  
      it('Toasts should call the callback function when dismissed',
          function(done) {
        var boolObj = {wasCalled: false};
        var callback = function() {
          boolObj.wasCalled = true;
        };
        Materialize.toast('I am a toast', 100, '', callback);
        setTimeout(function() {
          expect(boolObj.wasCalled).toBe(true,
              'because the callback set it to true');
          done();
        }, 500);
      });
  
      it('Apply two custom class to a toast', function() {
        Materialize.toast('Hi', 400, 'round flat');
        toast = $('.toast');
        expect(toast.closest('.round.flat').length).toBe(1,
            'because the class parameter was passed with two classes');
      });
  
    });
  
  
  });