Skip to content
This repository was archived by the owner on Nov 26, 2021. It is now read-only.

Commit c70e403

Browse files
committed
fix test
1 parent 7f6bb54 commit c70e403

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/events.spec.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,15 @@ describe(suite + ': Events', () => {
2424

2525

2626
it ('fire a "pagination" event (#813)', done=>{
27-
// can't paginate on server table without some mocking
28-
if (isClient) {
29-
vm().setPage(3);
27+
vm().setPage(3);
28+
3029
vm().$nextTick(function() {
3130
run(function() {
3231
eventEmitted('pagination');
3332
var data = getEventData('pagination');
3433
expect(data).toEqual(3);
3534
}, done);
3635
});
37-
}
38-
39-
4036
})
4137

4238
});

0 commit comments

Comments
 (0)