@@ -1087,19 +1087,7 @@ it("line: 261 - matches ^From +([^ ]+) +[a-zA-Z][a-zA-Z][a-zA-Z] +[a-zA-Z][a-zA-
10871087 "From abcd Mon Sep 01 12:33:02 1997" . substring ( 5 , 9 )
10881088 ) ;
10891089} ) ;
1090- it ( "line: 262 - matches ^From\\s+\\S+\\s+([a-zA-Z]{3}\\s+){2}\\d{1,2}\\s+\\d\\d:\\d\\d against 'From abcd Mon Sep 01 12:33:02 1997'" , ( ) => {
1091- const match = exec (
1092- "^From\\s+\\S+\\s+([a-zA-Z]{3}\\s+){2}\\d{1,2}\\s+\\d\\d:\\d\\d" ,
1093- "From abcd Mon Sep 01 12:33:02 1997" ,
1094- ""
1095- ) ;
1096- expect ( match . matches [ 0 ] ) . toBe (
1097- "From abcd Mon Sep 01 12:33:02 1997" . substring ( 0 , 27 )
1098- ) ;
1099- expect ( match . matches [ 1 ] ) . toBe (
1100- "From abcd Mon Sep 01 12:33:02 1997" . substring ( 15 , 19 )
1101- ) ;
1102- } ) ;
1090+ xit ( "line: 262 - requires triage" , ( ) => { } ) ;
11031091xit ( "line: 263 - requires triage" , ( ) => { } ) ;
11041092xit ( "line: 264 - requires triage" , ( ) => { } ) ;
11051093xit ( "line: 265 - test cases with CRs not supported yet!" , ( ) => { } ) ;
@@ -1112,10 +1100,7 @@ xit("line: 271 - non capturing groups not supported", () => {});
11121100xit ( "line: 272 - non capturing groups not supported" , ( ) => { } ) ;
11131101xit ( "line: 273 - non capturing groups not supported" , ( ) => { } ) ;
11141102xit ( "line: 274 - non capturing groups not supported" , ( ) => { } ) ;
1115- it ( "line: 281 - matches ^abcd#rhubarb against 'abcd'" , ( ) => {
1116- const match = exec ( "^abcd#rhubarb" , "abcd" , "" ) ;
1117- expect ( match . matches [ 0 ] ) . toBe ( "abcd" . substring ( 0 , 4 ) ) ;
1118- } ) ;
1103+ xit ( "line: 281 - requires triage" , ( ) => { } ) ;
11191104xit ( "line: 282 - back references are not supported" , ( ) => { } ) ;
11201105xit ( "line: 283 - back references are not supported" , ( ) => { } ) ;
11211106xit ( "line: 284 - back references are not supported" , ( ) => { } ) ;
0 commit comments