Most of demo scripts come together with related tests in *.test.ps1 files. Test tasks are invoked by Invoke-Build.
Invoke all *.test.ps1 files in the current directory recursively:
Invoke-Build ** -Safe -SummaryInvoke the task SomeTest in Some.test.ps1:
Invoke-Build SomeTest Some.test.ps1Invoke all tests in Some.test.ps1:
Invoke-Build * Some.test.ps1