File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export class DebugTracker implements vscode.DebugAdapterTracker {
5757 const line : string = ( message . body . output as string ) . replace ( / \n / , '' ) ;
5858 this . run . appendOutput ( line + '\r\n' ) ;
5959 if ( this . className === undefined ) {
60- const classBegin = line . match ( / ^ ( [ % \d A - Z a - z ] [ \d A - Z a - z \. ] * ) b e g i n s \. \. \. $ / ) ;
60+ const classBegin = line . match ( / ^ ( [ % \d A - Z a - z ] [ \d A - Z a - z 0 - 9 \. ] * ) b e g i n s \. \. \. / ) ;
6161 if ( classBegin ) {
6262 this . className = classBegin [ 1 ] ;
6363 }
@@ -70,7 +70,7 @@ export class DebugTracker implements vscode.DebugAdapterTracker {
7070 }
7171
7272 if ( this . testMethodName === undefined ) {
73- const methodBegin = line . match ( / ^ T e s t ( [ % \d A - Z a - z ] [ \d A - Z a - z ] * ) .* b e g i n s \. \. \. $ / ) ;
73+ const methodBegin = line . match ( / ^ T e s t ( [ \d A - Z a - z 0 - 9 ] + ) .* b e g i n s \. \. \. / ) ;
7474 if ( methodBegin ) {
7575 this . testMethodName = methodBegin [ 1 ] ;
7676 this . methodTest = this . methodTestMap . get ( `${ this . testingIdBase } :${ this . className } :Test${ this . testMethodName } ` ) ;
You can’t perform that action at this time.
0 commit comments