| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,9 @@ | |||
| 1 | + 'use strict'; | ||
| 2 | + | ||
| 3 | + const common = require('../common'); | ||
| 4 | + const assert = require('assert'); | ||
| 5 | + const spawnSync = require('child_process').spawnSync; | ||
| 6 | + | ||
| 7 | + const args = [`--debug-brk=${common.PORT}`, `-e`, `0`]; | ||
| 8 | + const proc = spawnSync(process.execPath, args, {encoding: 'utf8'}); | ||
| 9 | + assert(/Debugger listening on/.test(proc.stderr)); | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments