File tree 1 file changed +3
-13
lines changed
1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -53,19 +53,9 @@ const path = require('path');
53
53
} )
54
54
. then ( ( ) => cli . command ( 'breakpoints' ) )
55
55
. then ( ( ) => {
56
- // TODO: There is a known issue on AIX and some other operating systems
57
- // where the breakpoints aren't properly resolved yet when we reach this
58
- // point. Eventually that should be figured out but for now we don't
59
- // want to fail builds because of it.
60
- // What it should be:
61
- //
62
- // const msg = `SCRIPT: ${script}, OUTPUT: ${cli.output}`;
63
- // assert.ok(cli.output.includes(`#0 ${script}:2`), msg);
64
- // assert.ok(cli.output.includes(`#1 ${script}:3`), msg);
65
- //
66
- // What we're doing for now instead:
67
- assert . match ( cli . output , / # 0 [ ^ \n ] + t h r e e - l i n e s \. j s \$ ? : 2 / ) ;
68
- assert . match ( cli . output , / # 1 [ ^ \n ] + t h r e e - l i n e s \. j s \$ ? : 3 / ) ;
56
+ const msg = `SCRIPT: ${ script } , OUTPUT: ${ cli . output } ` ;
57
+ assert . ok ( cli . output . includes ( `#0 ${ script } :2` ) , msg ) ;
58
+ assert . ok ( cli . output . includes ( `#1 ${ script } :3` ) , msg ) ;
69
59
} )
70
60
. then ( ( ) => cli . quit ( ) )
71
61
. then ( null , onFatal ) ;
You can’t perform that action at this time.
0 commit comments