Skip to content

Commit b494765

Browse files
committed
docs(website): updated the links
1 parent 098b9fc commit b494765

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/docs/handbook/reporting/domain-events.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sidebar_position: 1
66

77
Serenity/JS [domain events](/api/core-events/class/DomainEvent) represent all the important things that happen during the execution of your test suite.
88
They are a critical part of the Serenity/JS messaging infrastructure
9-
that enables the [loosely coupled, modular architecture](/handbook/getting-started/architecture/)
9+
that enables the [loosely coupled, modular architecture](/handbook/architecture/)
1010
of the framework, and ensure that all the registered [reporting services](/handbook/reporting/)
1111
have the same, consistent picture of your test scenarios.
1212

src/docs/handbook/reporting/serenity-bdd-reporter.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ npm install --save-dev @serenity-js/serenity-bdd
4949
```
5050

5151
If you're starting a new project or need a reference implementation,
52-
consider using one of the [Serenity/JS Project Templates](/handbook/getting-started/project-templates/)
52+
consider using one of the [Serenity/JS Project Templates](/handbook/project-templates/)
5353
as they all come with pre-configured test runner adapters and built-in support for Serenity BDD reporting.
5454

5555
:::tip Simplified installation
@@ -492,7 +492,7 @@ To produce Serenity BDD reports, you need to:
492492
- [configure your test runner](#configuring-the-test-runner) to use the [`SerenityBDDReporter`](/api/serenity-bdd/class/SerenityBDDReporter) and produce the intermediate Serenity BDD `.json` reports
493493
- call `serenity-bdd run` when the test run completes to generate the aggregated HTML report
494494

495-
The pattern used by all the [Serenity/JS Project Templates](/handbook/getting-started/project-templates/) relies
495+
The pattern used by all the [Serenity/JS Project Templates](/handbook/project-templates/) relies
496496
on using two additional Node modules:
497497
- [`rimraf`](https://www.npmjs.com/package/rimraf) as a convenience method to remove any test reports left over from the previous run
498498
- [`npm-failsafe`](https://www.npmjs.com/package/npm-failsafe) to run the reporting process even if the test suite itself has failed (which is precisely when you need test reports the most...).
@@ -643,7 +643,7 @@ spec
643643
644644
#### Requirements hierarchy for web UI component testing projects
645645
646-
If you're using Serenity/JS to test [web UI components](/handbook/getting-started/project-templates/#web-component-testing), you might be following the popular convention of storing your spec files next to the component they're testing:
646+
If you're using Serenity/JS to test [web UI components](/handbook/project-templates/#web-component-testing), you might be following the popular convention of storing your spec files next to the component they're testing:
647647
648648
```
649649
src

0 commit comments

Comments
 (0)