Fix #594 - enable breakOnLoad by default

This commit is contained in:
Rob Lourens 2018-06-07 18:31:01 -07:00
Родитель c54e7fa58b
Коммит 37b844a0b6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -58,7 +58,7 @@ export class ChromeDebugAdapter extends CoreDebugAdapter {
}
public launch(args: ILaunchRequestArgs, telemetryPropertyCollector: ITelemetryPropertyCollector, seq?: number): Promise<void> {
if (args.breakOnLoad && !args.breakOnLoadStrategy) {
if ((args.breakOnLoad || typeof args.breakOnLoad === 'undefined') && !args.breakOnLoadStrategy) {
args.breakOnLoadStrategy = 'instrument';
}