mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-27 14:30:22 +01:00
40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
/* globals chai:false */
|
|
/* eslint no-extend-native:off */
|
|
iD.debug = true;
|
|
|
|
// disable things that use the network
|
|
iD.data.imagery = [];
|
|
for (var k in iD.services) { delete iD.services[k]; }
|
|
|
|
// run with a minimal set of presets for speed
|
|
iD.data.presets = {
|
|
presets: {
|
|
area: { name: 'Area', tags: {}, geometry: ['area'] },
|
|
line: { name: 'Line', tags: {}, geometry: ['line'] },
|
|
point: { name: 'Point', tags: {}, geometry: ['point'] },
|
|
vertex: { name: 'Vertex', tags: {}, geometry: ['vertex'] },
|
|
relation: { name: 'Relation', tags: {}, geometry: ['relation'] },
|
|
// for tests related to areaKeys:
|
|
building: { name: 'Building', tags: { building: 'yes' }, geometry: ['point', 'area'] },
|
|
man_made: { name: 'Man Made', tags: { man_made: '*' }, geometry: ['vertex', 'point', 'line', 'area'] }
|
|
}
|
|
};
|
|
|
|
|
|
mocha.setup({
|
|
ui: 'bdd',
|
|
globals: [
|
|
'__onresize.tail-size',
|
|
'__onmousemove.zoom',
|
|
'__onmouseup.zoom',
|
|
'__onkeydown.select',
|
|
'__onkeyup.select',
|
|
'__onclick.draw',
|
|
'__onclick.draw-block'
|
|
]
|
|
});
|
|
|
|
expect = chai.expect;
|
|
|
|
window.d3 = iD.d3; // TODO: remove
|