@@ -204,11 +204,11 @@ specific Jest test function groups (`describe`, `test`, and `it`).
204204Examples of ** incorrect** code when using ` mustMatch ` :
205205
206206``` js
207- // with mustMatch: '$ that'
207+ // with mustMatch: '^ that'
208208describe (' the correct way to do things' , () => {});
209209fit (' this there!' , () => {});
210210
211- // with mustMatch: { test: '$ that' }
211+ // with mustMatch: { test: '^ that' }
212212describe (' the tests that will be run' , () => {});
213213test (' the stuff works' , () => {});
214214xtest (' errors that are thrown have messages' , () => {});
@@ -217,11 +217,11 @@ xtest('errors that are thrown have messages', () => {});
217217Examples of ** correct** code when using ` mustMatch ` :
218218
219219``` js
220- // with mustMatch: '$ that'
220+ // with mustMatch: '^ that'
221221describe (' that thing that needs to be done' , () => {});
222222fit (' that this there!' , () => {});
223223
224- // with mustMatch: { test: '$ that' }
224+ // with mustMatch: { test: '^ that' }
225225describe (' the tests that will be run' , () => {});
226226test (' that the stuff works' , () => {});
227227xtest (' that errors that thrown have messages' , () => {});
0 commit comments