Skip to content

Commit fe508c4

Browse files
authored
docs(website): fix broken link to multi-actor scenarios
Signed-off-by: Bradley Turek <[email protected]>
1 parent 4f2d59f commit fe508c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/docs/handbook/web-testing/your-first-web-scenario.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ describe('Todo List App', () => {
248248
Serenity/JS test scenarios can involve **one or multiple actors**. This is useful, for example, when designing scenarios for contexts
249249
where several actors interact with one another, or where several actors are required to complete different parts of a larger workflow.
250250
Examples of such contexts include multi-user workflow systems, messaging systems, video games, and so on.
251-
You can see an example of a basic multi-actor test scenario in [`spec/multi-actor.spec.ts`](https://github.com/serenity-js/serenity-js-playwright-test-template/blob/main/spec/multi-actor.spec.ts).
251+
You can see an example of a basic multi-actor test scenario in [`spec/multi-actor_scenarios.spec.ts`](https://github.com/serenity-js/serenity-js-playwright-test-template/blob/main/spec/multi-actor_scenarios.spec.ts).
252252

253253
### Modelling workflows using reusable activities
254254

@@ -428,7 +428,7 @@ makes it easy to see exactly where the assertion failure has happened.
428428
### Exercises
429429

430430
1. Compare a single-actor scenario in [`spec/recording_items.spec.ts`](https://github.com/serenity-js/serenity-js-playwright-test-template/blob/main/spec/recording_items.spec.ts)
431-
and a multi-actor scenario in [`spec/multi-actor.spec.ts`](https://github.com/serenity-js/serenity-js-playwright-test-template/blob/main/spec/multi-actor.spec.ts).
431+
and a multi-actor scenario in [`spec/multi-actor_scenarios.spec.ts`](https://github.com/serenity-js/serenity-js-playwright-test-template/blob/main/spec/multi-actor_scenarios.spec.ts).
432432
What differences and what similarities can you see in how the actors are accessed?
433433
1. Inspect tasks in [`spec/todo-list-app/TodoItem/tasks.ts`](https://github.com/serenity-js/serenity-js-playwright-test-template/blob/main/spec/todo-list-app/TodoItem/tasks.ts).
434434
What Serenity/JS web interactions do they use? Can you find their usage examples in the API docs of the [`@serenity-js/web`](/api/web) module?

0 commit comments

Comments
 (0)