mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
clarify code comments
This commit is contained in:
parent
803b4573c1
commit
361758c578
3 changed files with 6 additions and 6 deletions
|
@ -234,7 +234,7 @@ test('journeys: via works – with detour', co(function* (t) {
|
|||
t.ok(journey)
|
||||
|
||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === württembergallee))
|
||||
t.ok(l, 'no stopover at Württembergalle')
|
||||
t.ok(l, 'Württembergalle is not being passed')
|
||||
|
||||
t.end()
|
||||
}))
|
||||
|
@ -255,7 +255,7 @@ test('journeys: via works – without detour', co(function* (t) {
|
|||
t.ok(journey)
|
||||
|
||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === kastanienallee))
|
||||
t.ok(l, 'no stopover at Kastanienallee')
|
||||
t.ok(l, 'Kastanienallee is not being passed')
|
||||
|
||||
t.end()
|
||||
}))
|
||||
|
|
|
@ -275,7 +275,7 @@ test('journeys: via works – with detour', co(function* (t) {
|
|||
t.ok(journey)
|
||||
|
||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === donauinselPassed))
|
||||
t.ok(l, 'no stopover at Donauinsel')
|
||||
t.ok(l, 'Donauinsel is not being passed')
|
||||
|
||||
t.end()
|
||||
}))
|
||||
|
@ -298,7 +298,7 @@ test('journeys: via works – without detour', co(function* (t) {
|
|||
t.ok(journey)
|
||||
|
||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === museumsquartierPassed))
|
||||
t.ok(l, 'no stopover at Weihburggasse')
|
||||
t.ok(l, 'Weihburggasse is not being passed')
|
||||
|
||||
t.end()
|
||||
}))
|
||||
|
|
|
@ -316,7 +316,7 @@ test('journeys: via works – with detour', co(function* (t) {
|
|||
t.ok(journey)
|
||||
|
||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === württembergallee))
|
||||
t.ok(l, 'no stopover at Württembergalle')
|
||||
t.ok(l, 'Württembergalle is not being passed')
|
||||
|
||||
t.end()
|
||||
}))
|
||||
|
@ -337,7 +337,7 @@ test('journeys: via works – without detour', co(function* (t) {
|
|||
t.ok(journey)
|
||||
|
||||
const l = journey.legs.some(l => l.passed && l.passed.some(p => p.station.id === kastanienallee))
|
||||
t.ok(l, 'no stopover at Kastanienallee')
|
||||
t.ok(l, 'Kastanienallee is not being passed')
|
||||
|
||||
t.end()
|
||||
}))
|
||||
|
|
Loading…
Add table
Reference in a new issue