File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,15 @@ So what is the cycle? Essentially, it's the following:
26
26
4 . Run tests and verify that the new solution passes all tests
27
27
5 . Refactor your solution (optional)
28
28
29
+ That's it. Note that the important part is the very first step: you write the
30
+ tests first. "Why?", you're probably asking. "I know my solution already!"
31
+ Well, are you sure about that? Some katas have long standing issues since the
32
+ original author didn't check a few edge cases.
33
+
34
+ However, since Codewars isn't running on your own machine, you should adjust
35
+ the cycle a little bit and add more than a single test. The cycle works best
36
+ with fast iterations, and the remote nature of Codewars makes this a little bit
37
+ hard. Still, writing at least part of your tests first is __ very__ recommended.
29
38
30
39
## Make your test descriptive
31
40
You can’t perform that action at this time.
0 commit comments