Skip to content

Commit f706cb3

Browse files
committed
Added some more caveats to the shared behavior tutorial
1 parent 6da2123 commit f706cb3

File tree

1 file changed

+37
-6
lines changed

1 file changed

+37
-6
lines changed

_tutorials/sharing_behaviors.md

+37-6
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ describe('Element', function() {
1919
this.subject = new Element();
2020
});
2121

22-
['x', 'y', 'width', 'height'].forEach(name => {
22+
for (const name of ['x', 'y', 'width', 'height']) {
2323
describe(name, function() {
2424
it('returns a number', function() {
2525
expect(typeof this.subject[name]()).toBe('number');
2626
});
2727
});
28-
});
28+
};
2929
});
3030
```
3131

@@ -78,13 +78,44 @@ describe('Cat', function() {
7878

7979
Sharing behaviors in tests can be a powerful tool, but use them with caution.
8080

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
8296
in turn may have bugs of its own - bugs that could lead you to think you're
8397
testing something that you aren't. Be especially wary about conditional logic
8498
(if statements) in your helper functions.
8599

86100
- Having lots of tests defined by test loops and helper functions can make life harder
87101
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

Comments
 (0)