Skip to content

Commit

Permalink
fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
karussell committed Jan 11, 2024
1 parent 49a14f9 commit 9872444
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 38 deletions.
75 changes: 39 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions spec/GraphHopperRoutingSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ describe("Simple Route", function () {
expect(details).toBeDefined();
var edgeId = details.edge_id;
var averageSpeed = details.average_speed;
expect(edgeId.length).toBeGreaterThan(25);
expect(edgeId.length).toBeLessThan(75);
expect(edgeId.length).toBeGreaterThan(50);
expect(edgeId.length).toBeLessThan(95);
expect(averageSpeed.length).toBeGreaterThan(5);
expect(averageSpeed.length).toBeLessThan(15);
done();
Expand Down

0 comments on commit 9872444

Please sign in to comment.