Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 500 Bytes

TESTS.md

File metadata and controls

22 lines (14 loc) · 500 Bytes

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 -Summary

Invoke the task SomeTest in Some.test.ps1:

    Invoke-Build SomeTest Some.test.ps1

Invoke all tests in Some.test.ps1:

    Invoke-Build * Some.test.ps1