@@ -19,13 +19,13 @@ describe('Element', function() {
19
19
this .subject = new Element ();
20
20
});
21
21
22
- [' x' , ' y' , ' width' , ' height' ]. forEach ( name => {
22
+ for ( const name of [' x' , ' y' , ' width' , ' height' ]) {
23
23
describe (name, function () {
24
24
it (' returns a number' , function () {
25
25
expect (typeof this .subject [name]()).toBe (' number' );
26
26
});
27
27
});
28
- }) ;
28
+ };
29
29
});
30
30
```
31
31
@@ -78,13 +78,44 @@ describe('Cat', function() {
78
78
79
79
Sharing behaviors in tests can be a powerful tool, but use them with caution.
80
80
81
- - Overuse of complex helper functions can lead to logic in your tests, which
81
+ - Sharing doesn't just remove duplication, it also creates coupling. Sharing
82
+ behaviors makes it more difficult to handle situations where one of the suites
83
+ involved needs to do something slightly different. If requirements
84
+ change, a function may no longer "fit the mold" like other functions, forcing
85
+ the developer to do more refactoring than if you had just listed out your
86
+ tests separately.It's often more important for test code to be decoupled than
87
+ for it to be DRY.
88
+
89
+ - Sharing doesn't just remove duplication, it also tends to make the code harder
90
+ to understand. Readers often need to "ping pong" back and forth between the
91
+ shared portion and the non-shared portion to understand what's going on. It's
92
+ often more important for test code to be obvious than for
93
+ it to be DRY.
94
+
95
+ - Overuse of complex helper functions can lead to more logic in your tests, which
82
96
in turn may have bugs of its own - bugs that could lead you to think you're
83
97
testing something that you aren't. Be especially wary about conditional logic
84
98
(if statements) in your helper functions.
85
99
86
100
- Having lots of tests defined by test loops and helper functions can make life harder
87
101
for developers. For example, searching for the name of a failed spec may be
88
- more difficult if your test names are pieced together at runtime. If requirements
89
- change, a function may no longer "fit the mold" like other functions, forcing the
90
- developer to do more refactoring than if you had just listed out your tests separately.
102
+ more difficult if your test names are pieced together at runtime. Stack traces
103
+ can also be less useful, particularly in async specs, because they may point
104
+ only to shared code.
105
+
106
+ Good questions to ask yourself if you're considering sharing behavior:
107
+
108
+ - Is it important that all the suites in question work the same, or is it just
109
+ more convenient? How confident are you that a change to one of them should
110
+ affect all of them?
111
+
112
+ - What message are you trying to send to future maintainers? Are you trying to
113
+ say "these things should all behave the same"? Or is that message just a side
114
+ effect of de-duplication?
115
+
116
+ - How easy is it to understand the resulting test code?
117
+
118
+ - How easy is it to debug failures?
119
+
120
+ - If the behavior was duplicated instead of shared, how hard would it be to
121
+ maintain?
0 commit comments