Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed docs.microsoft.com to learn.microsoft.com #122

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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 BrowserEfficiencyTest/Arguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ private bool ProcessArgs(string[] args)
case "-region":
// The name of the region must be specified after the -region option.
// The region must be defined in the ActiveRegion.xml
// See https://docs.microsoft.com/en-us/windows-hardware/test/wpt/regions-of-interest for more information
// See https://learn.microsoft.com/windows-hardware/test/wpt/regions-of-interest for more information
// on Regions of Interest.
argNum++;
if ((argNum < args.Length) && !(args[argNum].StartsWith("-")))
Expand Down
2 changes: 1 addition & 1 deletion Documentation/Usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ C:\unpackedExtensions
|----|----|---- <otherExtFiles>
```
#### Testing your own extension
If you wish prepare your own extension for testing, you can follow the first half of the Microsoft Edge Extension [ManifoldJS Packaging Guide](https://docs.microsoft.com/en-us/microsoft-edge/extensions/guides/packaging/using-manifoldjs-to-package-extensions) to generate an unpacked extension AppX. From there, you will need to copy the `manifest` folder that ManifoldJS generates into a folder (`C:\unpackedExtensions` for the purposes of this demo) to match the structure above.
If you wish prepare your own extension for testing, you can follow the first half of the Microsoft Edge Extension [ManifoldJS Packaging Guide](https://learn.microsoft.com/microsoft-edge/extensions/guides/packaging/using-manifoldjs-to-package-extensions) to generate an unpacked extension AppX. From there, you will need to copy the `manifest` folder that ManifoldJS generates into a folder (`C:\unpackedExtensions` for the purposes of this demo) to match the structure above.

#### Testing an extension from the Windows Store
If you wish to run BrowserEfficiencyTest with an extension that is available from the Windows Store, you will need to perform the following steps:
Expand Down