Regression on scope tracking
See original GitHub issueI believe the changes in #450 caused a regression on tracking the scope of block params:
my-app/pods/components/application-nav/template.hbs
3:4 error 'menu' is defined but never used no-unused-block-params
Here is a reproduction.
<BurgerMenu as |burger|>
<burger.menu as |menu|>
<header>
Something
</header>
<menu.item>
{{#link-to 'finder.bonds'}}
{{fa-icon 'university'}} <span>Issuances</span>
{{/link-to}}
</menu.item>
</burger.menu>
<burger.outlet>
{{yield (hash state=burger.state)}}
</burger.outlet>
</BurgerMenu>
Note, the same regression happens if I call the components using curry braces.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Regression Testing and Scope - Value Transformation
There are many factors that go into determining the scope of regression testing.
Read more >Regression Testing in Agile: Concepts, Challenges ... - Sealights
Some regression testing tools integrate with error tracking tools. This allows you to see rich information about what happened during a regression test...
Read more >What is Regression Testing? Definition, Tools, Method, and ...
Regression testing is a type of testing that is done to verify that ... If test cases vary from time to time, the...
Read more >Plan your regression testing strategy by asking th...
This is why coverage is hard to track during regression testing. Use a test management tool that enables you to track coverage and...
Read more >Why Regression Defects Are Important For Your Next Release?
How you can discover and handle regression defects for a successful release. ... Monitoring the test data and other metrics.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Serabe - Thank you for digging in, your findings were very helpful in tracking it down.
#452 now includes a fix…
@josemarluedke - Would you mind putting up a failing test PR (with tests for both angle bracket invocation and curly)?