Skip to content

Commit 89129a5

Browse files
committed
Updated test snapshot
1 parent 70f7df9 commit 89129a5

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

client/components/__test__/Nav.test.jsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ describe('Nav', () => {
3535
tidyCode: jest.fn(),
3636
showFind: jest.fn(),
3737
findNext: jest.fn(),
38-
findPrev: jest.fn()
38+
findPrev: jest.fn(),
39+
showReplace: jest.fn(),
40+
showReplaceAll: jest.fn(),
3941
},
4042
startSketch: jest.fn(),
4143
stopSketch: jest.fn(),

client/components/__test__/__snapshots__/Nav.test.jsx.snap

+22
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,28 @@ exports[`Nav renders correctly 1`] = `
122122
</span>
123123
</button>
124124
</li>
125+
<li
126+
class="nav__dropdown-item"
127+
>
128+
<button>
129+
<span
130+
class="nav__keyboard-shortcut"
131+
>
132+
⌃+R
133+
</span>
134+
</button>
135+
</li>
136+
<li
137+
class="nav__dropdown-item"
138+
>
139+
<button>
140+
<span
141+
class="nav__keyboard-shortcut"
142+
>
143+
⇧+⌃+R
144+
</span>
145+
</button>
146+
</li>
125147
</ul>
126148
</li>
127149
<li

0 commit comments

Comments
 (0)