From 8066dc851168cd13a7b116244ba0ca105add1f8c Mon Sep 17 00:00:00 2001 From: "Stiliyan Tonev (Bark)" Date: Wed, 31 Jul 2024 16:44:25 +0300 Subject: [PATCH] remove test from slow folder --- ...exec' should display required node version | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 test/slow/Running 'nvm-exec' should display required node version diff --git a/test/slow/Running 'nvm-exec' should display required node version b/test/slow/Running 'nvm-exec' should display required node version deleted file mode 100644 index 8c91cf7e2a..0000000000 --- a/test/slow/Running 'nvm-exec' should display required node version +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -set -x -\. ../../nvm.sh - -NVM_TEST_VERSION=v9 - -# Remove the stuff we're clobbering. -[ -e ../../$NVM_TEST_VERSION ] && rm -R ../../$NVM_TEST_VERSION - -# Write it to nvmrc -echo "$NVM_TEST_VERSION" > .nvmrc - -output="$(../../nvm-exec 2>&1)"; -expected='N/A: version "v9" is not yet installed. - -You need to run `nvm install v9` to install and use it. -No NODE_VERSION provided; no .nvmrc file found'; -# Skip install, we want to test the error message -diff <(echo "$expected") <(echo "$output")