Public/Start-ConnectorSyncSession.tests.ps1

BeforeAll {
    $Script:Module = Import-Module "$($PSScriptRoot)/.." -Force -PassThru
}

Describe "Start-ConnectorSyncSession" {
    It "Should throw when not connected" {
        {
            Start-ConnectorSyncSession
        } | Should -Throw
    }
}