Skip to content

Commit 9ea13f5

Browse files
authored
ReferenceError: click is not defined
Add missing `click` import
1 parent cd2eb47 commit 9ea13f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

guides/v3.5.0/testing/testing-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ external action is called:
247247
```javascript {data-filename="tests/integration/components/comment-form-test.js"}
248248
import { module, test } from 'qunit';
249249
import { setupRenderingTest } from 'ember-qunit';
250-
import { fillIn, render } from '@ember/test-helpers';
250+
import { click, fillIn, render } from '@ember/test-helpers';
251251
import hbs from 'htmlbars-inline-precompile';
252252

253253
module('Integration | Component | comment form', function(hooks) {

0 commit comments

Comments
 (0)