Skip to content

Commit aaa9ca2

Browse files
authored
Added missing .jumbo class for consistency's sake
In all the other assertions for the other pages we also use the ´.jumbo´ class. While I understand this still works correctly for the tests in the tutorial, I feel like it is unnecessarily confusing for beginners (especially when it's not called out in the text after teh example either).
1 parent f22c592 commit aaa9ca2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/markdown/tutorial/part-1/03-automated-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Let's practice what we learned by adding tests for the remaining pages:
167167
+ assert.equal(currentURL(), '/getting-in-touch');
168168
+ assert.dom('h2').hasText('Contact Us');
169169
+
170-
+ assert.dom('a.button').hasText('About');
170+
+ assert.dom('.jumbo a.button').hasText('About');
171171
+ await click('.jumbo a.button');
172172
+
173173
+ assert.equal(currentURL(), '/about');

0 commit comments

Comments
 (0)