Skip to content

Commit 06936e8

Browse files
authored
Update snapshot-examples.md
1 parent 82a64be commit 06936e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/snapshot-examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The library has basic support for snapshot testing, declared via Razor syntax in
44

55
Notable features that are missing at the moment is the ability to auto-generate the expected output and to trigger updates of expected output.
66

7-
**NOTE:** This feature is _EXPERIMENTAL_ and syntax and API will likely changed. See [Contribute](readme.md/#contribute) for info on how to provide feedback and suggestions.
7+
**NOTE:** This feature is _EXPERIMENTAL_, and syntax and API will likely be changed. See [Contribute](readme.md/#contribute) for info on how to provide feedback and suggestions.
88

99
1. [Creating new snapshot test component](#creating-new-snapshot-test-component)
1010
2. [Defining snapshot test cases](#defining-snapshot-test-cases)
@@ -17,7 +17,7 @@ To create Razor-based snapshot tests, we need to create snapshot test components
1717

1818
All snapshot test components must inherit from `TestComponentBase`, e.g. by adding `@inherits TestComponentBase` to the top of your .razor file.
1919

20-
**Tip:** In the folder you keep your Razor-based snapshot tests, add a `_Imports.razor` file, and put `@inherits TestComponentBase` into that as well as any using statements you need. Then all snapshot test components inherits the correct base component by default and have the default imports available.
20+
**Tip:** In the folder you keep your Razor-based snapshot tests, add a `_Imports.razor` file, and put `@inherits TestComponentBase` into that as well as any using statements you need. Then all snapshot test components inherit the correct base component by default and have the default imports available.
2121

2222
## Defining snapshot test cases
2323

0 commit comments

Comments
 (0)