mirror of
https://github.com/mdgriffith/elm-ui.git
synced 2024-11-29 07:18:39 +03:00
2.4 KiB
2.4 KiB
Classifying Issues
One of the first things we want to do is to keep our issues categorized.
If you add a comment to an issue that references a label, that label will be assigned to that issue! (e.g. #has-ellie
will add the has-ellie
label.)
-
Feature Suggestions -
#feature-suggestion
- This issue describes a feature suggestion. Tagging it with#feature-suggestion
is all that needs to happen. -
Pain Point -
#pain-point
- This is an issue that descrbes a challenge someone is facing, but makes not direct suggestion about how it should be solved. Here's a good example, unable to applly text overflow ellipses. -
Bug -
#bug
- The issue that's being described is potentially a bug. It may not be totally obvious what the fix is.- Has Ellie -
#has-ellie
- Every bug described should have an ellie showing the problem, even if it's sorta trivial. - No Ellie - If it's a bug, but has been checked for ellies and has no ellie, flag it as
#no-ellie
. - Has Test -
#has-test
- Once we have an ellie for the problem, we want a version of that code in the codebase so I can easily take a look.- The thing to do is to open a PR that copies that ellie into the
tests-rendering/cases/open
directory. Give it a succinct, human name. - Rename the
Element.*
imports asTestable.Element.*
- Add a link to the issue, the title of the issue, and the body of the issue to the module comment. Here's an example
- The thing to do is to open a PR that copies that ellie into the
- Test is compiling - Optionally you can see if the test is compiling by first
cd tests-rendering
and then runningelm-live cases/open/{The file}.elm --open --dir=view -- --output=view/elm.js --debug
- If it does not compile, flag the issue as
#test-not-compiling
. Don't worry about fixing it unless it's really obvious what needs to happen.
- If it does not compile, flag the issue as
- Check if the test passes. Do that by opening
tests-rendering/cases/view/view.html
after running the above compilation. If it says all passes, likely you should flag the issue as#test-incorrectly-passing
. - If it's failing, you can flag as
#test-failing
- Has Ellie -