| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A getting-started wizard for Verify, hosted at https://verifytests.github.io/Wizard/.
It replaces the static markdown pages in Verify/docs/wiz. For a new project it asks for the operating system, IDE, test framework, build server and optionally the tech stack. It then produces:
A second entry point adds Verify plugins to an existing project, and explains how they interact with the plugins already in use.
The site is a Blazor WebAssembly app that runs entirely in the browser; nothing is sent to a server.
The implementation plan, including every design decision, is in plan.md.
dotnet run --project src/Wizard.Web
Then browse to http://localhost:5179.
dotnet build src/Wizard.Tests --configuration Release dotnet run --project src/Wizard.Tests --configuration Release --no-build
The test project publishes the Blazor app after it builds. The Playwright tests serve that published output and drive it in Chromium.
Two explicit suites need network, and are run by workflows rather than on every build:
dotnet run --project src/Wizard.Tests --configuration Release --no-build -- --treenode-filter "/*/*/GeneratedSolutionTests/*" dotnet run --project src/Wizard.Tests --configuration Release --no-build -- --treenode-filter "/*/*/ContentDriftTests/*"
Every page's address holds all the answers given so far, so any point in the wizard can be bookmarked or shared. Three entry points are stable:
The browser remembers the tech stack, the plugins already in use and the sponsor answers between visits. The home page has a button that forgets them.
| Back | FazBrowse Home | New Git URL |