SomethingToTest.tests.ps1

. "$($PSScriptRoot)\helper\Pester.ps1"

Describe "SomethingToTest" {
    Context "Demo" {
        It "F1" {
            Test-F1 | Should Be "F1"
        }
        It "F2" {
            Test-F2 | Should Be "F2"
        }
    }
}