From 3cec1f02452b728301332d5a49d0aee095c95c10 Mon Sep 17 00:00:00 2001 From: James Garriss <52328727+james-garriss@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:52:15 -0500 Subject: [PATCH] tweak docs --- utils/workflow/Initialize-ScubaGearForTesting.ps1 | 7 +++---- utils/workflow/Install-SeleniumForTesting.ps1 | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/utils/workflow/Initialize-ScubaGearForTesting.ps1 b/utils/workflow/Initialize-ScubaGearForTesting.ps1 index dc585aab29..b34190c501 100644 --- a/utils/workflow/Initialize-ScubaGearForTesting.ps1 +++ b/utils/workflow/Initialize-ScubaGearForTesting.ps1 @@ -1,7 +1,7 @@ function Initialize-ScubaGearForTesting { <# - .DESCRIPTION - Initializes ScubaGear for testing + .SYNOPSIS + Initializes ScubaGear, which installs the necessary modules and tools to run ScubaGear. #> Write-Output 'Initializing ScubaGear for testing...' @@ -11,5 +11,4 @@ function Initialize-ScubaGearForTesting { Write-Output 'Importing function Initialize-Scuba...' Import-Module (Join-Path -Path $RepoRootPath -ChildPath 'PowerShell/ScubaGear') -Function Initialize-Scuba Write-Output 'Calling Initialize ScubaGear...' - Initialize-SCuBA -} \ No newline at end of file + Initialize-SCuBA \ No newline at end of file diff --git a/utils/workflow/Install-SeleniumForTesting.ps1 b/utils/workflow/Install-SeleniumForTesting.ps1 index 51b7978a32..a3a05e1772 100644 --- a/utils/workflow/Install-SeleniumForTesting.ps1 +++ b/utils/workflow/Install-SeleniumForTesting.ps1 @@ -1,7 +1,7 @@ function Install-SeleniumForTesting { <# - .DESCRIPTION - Installs Selenium for ScubaGear testing + .SYNOPSIS + Installs Selenium PowerShell module and Chrome driver for ScubaGear testing #> Write-Output 'Installing Selenium for testing...'