Merge remote-tracking branch 'upstream/pull/5642'

This commit is contained in:
Tom Hughes 2025-02-12 17:58:06 +00:00
commit cb0c5262a8
5 changed files with 45 additions and 79 deletions

View file

@ -37,7 +37,7 @@ class DirectionsSystemTest < ApplicationSystemTestCase
stub_routing <<~CALLBACK
const distance = points[0].distanceTo(points[1]);
const time = distance * 30;
callback(false, {
return Promise.resolve({
line: points,
steps: [
[points[0], 8, "<b>1.</b> #{start_instruction}", distance, points],
@ -53,10 +53,8 @@ class DirectionsSystemTest < ApplicationSystemTestCase
execute_script <<~SCRIPT
$(() => {
for (const engine of OSM.Directions.engines) {
engine.getRoute = (points, callback) => {
setTimeout(() => {
engine.getRoute = (points, signal) => {
#{callback_code}
});
};
}
});