From c79c183aa18527b0c3d8b973b8bc775a656ca86f Mon Sep 17 00:00:00 2001 From: aparnajyothi-y <147696841+aparnajyothi-y@users.noreply.github.com> Date: Mon, 8 Jul 2024 16:21:06 +0530 Subject: [PATCH] Update Node.Tests.ps1 --- tests/Node.Tests.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/Node.Tests.ps1 b/tests/Node.Tests.ps1 index 8539cf0..f851eb7 100644 --- a/tests/Node.Tests.ps1 +++ b/tests/Node.Tests.ps1 @@ -1,5 +1,9 @@ Import-Module (Join-Path $PSScriptRoot "../helpers/pester-extensions.psm1") + + +Describe "Node.js" { + BeforeAll { function Get-UseNodeLogs { @@ -14,7 +18,6 @@ BeforeAll { } } -Describe "Node.js" { It "is available" { "node --version" | Should -ReturnZeroExitCode }