Skip to content

Commit 3c475bb

Browse files
Fix code example on angular examples.md (testing-library#407)
Add brackets around import { CounterComponent } from './counter.component.ts'
1 parent 21cc1b0 commit 3c475bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/angular-testing-library/examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ counter.component.spec.ts
3636

3737
```typescript
3838
import { render } from '@testing-library/angular'
39-
import CounterComponent from './counter.component.ts'
39+
import { CounterComponent } from './counter.component.ts'
4040

4141
describe('Counter', () => {
4242
test('should render counter', async () => {

0 commit comments

Comments
 (0)