@@ -1597,10 +1597,14 @@ it("line: 1184 - matches (main(O)?)+ against 'mainmain'", () => {
15971597 expect ( match . matches [ 0 ] ) . toBe ( "mainmain" . substring ( 0 , 8 ) ) ;
15981598 expect ( match . matches [ 1 ] ) . toBe ( "mainmain" . substring ( 4 , 8 ) ) ;
15991599} ) ;
1600- xit ( "line 1185 - issue with parsing the test itself" , ( ) => { } ) ;
1601- xit ( "line 1186 - issue with parsing the test itself" , ( ) => { } ) ;
1602- xit ( "line 1187 - issue with parsing the test itself" , ( ) => { } ) ;
1603- xit ( "line 1188 - issue with parsing the test itself" , ( ) => { } ) ;
1600+ it ( "line: 1185 - matches (main(O)?)+ against 'mainOmain'" , ( ) => {
1601+ const match = exec ( "(main(O)?)+" , "mainOmain" , "s" ) ;
1602+ expect ( match . matches [ 0 ] ) . toBe ( "mainOmain" . substring ( 0 , 9 ) ) ;
1603+ expect ( match . matches [ 1 ] ) . toBe ( "mainOmain" . substring ( 5 , 9 ) ) ;
1604+ } ) ;
1605+ xit ( "line: 1186 - test indicates a malformed regex, whereas it appears OK in JS" , ( ) => { } ) ;
1606+ xit ( "line: 1187 - test indicates a malformed regex, whereas it appears OK in JS" , ( ) => { } ) ;
1607+ xit ( "line: 1188 - test indicates a malformed regex, whereas it appears OK in JS" , ( ) => { } ) ;
16041608xit ( "line: 1189 - test indicates a malformed regex, whereas it appears OK in JS" , ( ) => { } ) ;
16051609it ( "line: 1190 - matches ^a.b against 'a\rb'" , ( ) => {
16061610 const match = exec ( "^a.b" , "a\rb" , "s" ) ;
0 commit comments