Skip to content

Commit 55de867

Browse files
committed
2 parents b13c737 + 709d62e commit 55de867

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"clean": "rimraf target",
88
"lint": "tslint --config ./tslint.json --project ./tsconfig.json --format stylish",
99
"pretest": "serenity update",
10-
"pree2e": "npm run lint && npm run webdriver:update -- --standalone",
10+
"pree2e": "npm run lint && npm run webdriver:update -- --standalone --versions.standalone=2.53.1",
1111
"e2e": "protractor ./protractor.conf.js --cucumberOpts.name 'Connie looks for the next train'",
1212
"report": "serenity run",
1313
"test": "failsafe clean e2e report",
@@ -33,7 +33,7 @@
3333
"protractor": "5.1.2",
3434
"rimraf": "2.6.1",
3535
"serenity-cli": ">= 0.4.0",
36-
"serenity-js": ">= 1.7.0",
36+
"serenity-js": ">= 1.10.1",
3737
"ts-node": "3.0.6",
3838
"tslint": "5.4.3",
3939
"tslint-microsoft-contrib": "5.0.0",

src/journey_planner/journeys_found.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface JourneySummary {
99
arrivalTime: string;
1010
}
1111

12-
export const JourneysFound = () => Question.where(`#actor checks the results`, actor =>
12+
export const JourneysFound = () => Question.about(`the journeys found`, actor =>
1313

1414
BrowseTheWeb.as(actor).locateAll(JourneyResults.List).
1515
map(resultsToJourneySummaries) as PromiseLike<JourneySummary[]>,

0 commit comments

Comments
 (0)