@@ -204,11 +204,11 @@ specific Jest test function groups (`describe`, `test`, and `it`).
204
204
Examples of ** incorrect** code when using ` mustMatch ` :
205
205
206
206
``` js
207
- // with mustMatch: '$ that'
207
+ // with mustMatch: '^ that'
208
208
describe (' the correct way to do things' , () => {});
209
209
fit (' this there!' , () => {});
210
210
211
- // with mustMatch: { test: '$ that' }
211
+ // with mustMatch: { test: '^ that' }
212
212
describe (' the tests that will be run' , () => {});
213
213
test (' the stuff works' , () => {});
214
214
xtest (' errors that are thrown have messages' , () => {});
@@ -217,11 +217,11 @@ xtest('errors that are thrown have messages', () => {});
217
217
Examples of ** correct** code when using ` mustMatch ` :
218
218
219
219
``` js
220
- // with mustMatch: '$ that'
220
+ // with mustMatch: '^ that'
221
221
describe (' that thing that needs to be done' , () => {});
222
222
fit (' that this there!' , () => {});
223
223
224
- // with mustMatch: { test: '$ that' }
224
+ // with mustMatch: { test: '^ that' }
225
225
describe (' the tests that will be run' , () => {});
226
226
test (' that the stuff works' , () => {});
227
227
xtest (' that errors that thrown have messages' , () => {});
0 commit comments