Skip to content

Commit ce108da

Browse files
authored
Update testing-components.md
1 parent 1a563ea commit ce108da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/release/testing/testing-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export default class CommentFormComponent extends Component {
235235
Here's an example test that asserts that the specified `externalAction` function is invoked when the component's internal `submitComment` action is triggered by making use of a test double (dummy function).
236236
The value from the external action is captured in a shared variable (if and when it is called),
237237
so that it can be explicitly asserted directly in the test function at the time where we
238-
expect the closure to have been called.
238+
expect the closure action to have been called.
239239

240240
```javascript {data-filename="tests/integration/components/comment-form-test.js"}
241241
import { module, test } from 'qunit';

0 commit comments

Comments
 (0)