-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathviewScrollSpec.ts
50 lines (39 loc) · 1.36 KB
/
viewScrollSpec.ts
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
import * as angular from 'angular';
declare var inject;
const module = angular['mock'].module;
describe('uiView', function () {
'use strict';
beforeEach(module('ui.router'));
describe('scrollIntoView', function () {
let elem;
beforeEach(function () {
elem = [{ scrollIntoView: jasmine.createSpy('scrollIntoView') }];
});
it('should scroll element into view after timeout', inject(function ($uiViewScroll, $timeout) {
$uiViewScroll(elem);
expect(elem[0].scrollIntoView).not.toHaveBeenCalled();
$timeout.flush();
expect(elem[0].scrollIntoView).toHaveBeenCalled();
}));
it('should return the promise from the timeout', inject(function ($uiViewScroll, $timeout) {
const promise = $uiViewScroll(elem);
$timeout.flush();
expect(elem[0].scrollIntoView).toHaveBeenCalled();
expect(promise).toBeDefined();
}));
});
describe('useAnchorScroll', function () {
beforeEach(
module(function ($provide, $uiViewScrollProvider) {
$provide.decorator('$anchorScroll', function ($delegate) {
return jasmine.createSpy('$anchorScroll');
});
$uiViewScrollProvider.useAnchorScroll();
})
);
it('should call $anchorScroll', inject(function ($uiViewScroll, $anchorScroll) {
$uiViewScroll();
expect($anchorScroll).toHaveBeenCalled();
}));
});
});