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

Fix not hitting BPs on the first line of NTVS unit tests #369

Merged
merged 1 commit into from
Oct 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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