Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-molak committed Jan 8, 2018
2 parents b13c737 + 709d62e commit 55de867
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"clean": "rimraf target",
"lint": "tslint --config ./tslint.json --project ./tsconfig.json --format stylish",
"pretest": "serenity update",
"pree2e": "npm run lint && npm run webdriver:update -- --standalone",
"pree2e": "npm run lint && npm run webdriver:update -- --standalone --versions.standalone=2.53.1",
"e2e": "protractor ./protractor.conf.js --cucumberOpts.name 'Connie looks for the next train'",
"report": "serenity run",
"test": "failsafe clean e2e report",
Expand All @@ -33,7 +33,7 @@
"protractor": "5.1.2",
"rimraf": "2.6.1",
"serenity-cli": ">= 0.4.0",
"serenity-js": ">= 1.7.0",
"serenity-js": ">= 1.10.1",
"ts-node": "3.0.6",
"tslint": "5.4.3",
"tslint-microsoft-contrib": "5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/journey_planner/journeys_found.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface JourneySummary {
arrivalTime: string;
}

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

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

0 comments on commit 55de867

Please sign in to comment.