Skip to content
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.

Commit

Permalink
Fix not hitting BPs on the first line of NTVS unit test (#369)
Browse files Browse the repository at this point in the history
  • Loading branch information
digeff authored and roblourens committed Oct 16, 2018
1 parent bf03819 commit 489b59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chrome/breakOnLoadHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class BreakOnLoadHelper {
}

private getScriptUrlFromId(scriptId: string): string {
return this._chromeDebugAdapter.scriptsById.get(scriptId).url;
return utils.canonicalizeUrl(this._chromeDebugAdapter.scriptsById.get(scriptId).url);
}

public async setBrowserVersion(version: Version): Promise<void> {
Expand Down

0 comments on commit 489b59f

Please sign in to comment.