| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 5c6ab71 commit 6852389
1 file 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]+three-lines\.js\$?:2/); | ||
| 68 | - assert.match(cli.output, /#1 [^\n]+three-lines\.js\$?: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); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments