-
Notifications
You must be signed in to change notification settings - Fork 817
/
Copy pathmocha_runner.js
86 lines (77 loc) · 1.66 KB
/
mocha_runner.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
84
85
86
require('babel-core/register');
require('babel-polyfill');
var jsdom = require('jsdom').jsdom;
var chai = require('chai'),
spies = require('chai-spies');
var sinon = require('sinon');
var exposedProperties = ['window', 'navigator', 'document'];
global.document = jsdom('');
global.window = document.defaultView;
Object.keys(document.defaultView).forEach((property) => {
if (typeof global[property] === 'undefined') {
exposedProperties.push(property);
global[property] = document.defaultView[property];
}
});
global.navigator = {
userAgent: 'node.js'
};
chai.use(spies);
const google = {
maps: {
LatLng: function(lat, lng) {
return {
latitude: parseFloat(lat),
longitude: parseFloat(lng),
lat: function() {
return this.latitude;
},
lng: function() {
return this.longitude;
}
};
},
LatLngBounds: function(ne, sw) {
return {
getSouthWest: function() {
return sw;
},
getNorthEast: function() {
return ne;
}
};
},
OverlayView: function() {
return {};
},
InfoWindow: function() {
return {};
},
Marker: function() {
return {
addListener: function() {},
setMap: function() {}
};
},
MarkerImage: function() {
return {};
},
Map: function() {
return {
addListener: function() {},
trigger: function() {}
};
},
Point: function() {
return {};
},
Size: function() {
return {};
},
event: {
trigger: function() {}
}
}
};
global.google = google;
documentRef = document;