forked from vuejs/vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatcher_spec.js
83 lines (75 loc) · 1.47 KB
/
batcher_spec.js
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
var batcher = require('../../../src/batcher')
var nextTick = require('../../../src/util').nextTick
describe('Batcher', function () {
var spy
beforeEach(function () {
spy = jasmine.createSpy('batcher')
})
it('push', function (done) {
batcher.push({
run: spy
})
nextTick(function () {
expect(spy.calls.count()).toBe(1)
done()
})
})
it('dedup', function (done) {
batcher.push({
id: 1,
run: spy
})
batcher.push({
id: 1,
run: spy
})
nextTick(function () {
expect(spy.calls.count()).toBe(1)
done()
})
})
it('allow diplicate when flushing', function (done) {
batcher.push({
id: 1,
run: function () {
spy()
batcher.push({
id: 1,
run: spy
})
}
})
nextTick(function () {
expect(spy.calls.count()).toBe(2)
done()
})
})
it('calls user watchers after directive updates', function (done) {
var vals = []
function run () {
vals.push(this.id)
}
batcher.push({
id: 2,
user: true,
run: function () {
run.call(this)
// user watcher triggering another directive update!
batcher.push({
id: 3,
run: run
})
}
})
batcher.push({
id: 1,
run: run
})
nextTick(function () {
expect(vals[0]).toBe(1)
expect(vals[1]).toBe(2)
expect(vals[2]).toBe(3)
done()
})
})
})