File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ describe("Basic", () => {
2222 {
2323 function : 'longWork' ,
2424 filename : expect . stringMatching ( / t e s t .j s $ / ) ,
25- lineno : 18 ,
26- colno : 29
25+ lineno : expect . any ( Number ) ,
26+ colno : expect . any ( Number ) ,
2727 } ,
2828 {
2929 function : '?' ,
3030 filename : expect . stringMatching ( / t e s t .j s $ / ) ,
31- lineno : 22 ,
32- colno : 1
31+ lineno : expect . any ( Number ) ,
32+ colno : expect . any ( Number ) ,
3333 } ,
3434 ] ) ) ;
3535
@@ -43,14 +43,14 @@ describe("Basic", () => {
4343 {
4444 function : 'longWork' ,
4545 filename : expect . stringMatching ( / w o r k e r .j s $ / ) ,
46- lineno : 10 ,
47- colno : 29
46+ lineno : expect . any ( Number ) ,
47+ colno : expect . any ( Number ) ,
4848 } ,
4949 {
5050 function : '?' ,
5151 filename : expect . stringMatching ( / w o r k e r .j s $ / ) ,
52- lineno : 14 ,
53- colno : 1
52+ lineno : expect . any ( Number ) ,
53+ colno : expect . any ( Number ) ,
5454 } ,
5555 ] ) ) ;
5656 } ) ;
You can’t perform that action at this time.
0 commit comments