diff options
Diffstat (limited to 'test/dotnet')
-rwxr-xr-x | test/dotnet/test.sh | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/dotnet/test.sh b/test/dotnet/test.sh index 74c71bd..5bbcd74 100755 --- a/test/dotnet/test.sh +++ b/test/dotnet/test.sh @@ -2,10 +2,10 @@ set -e -# Optional: Import test library +# Import test library source dev-container-features-test-lib -# Definition specific tests +# Make sure .NET is installed check "info" dotnet --info check "list-sdks" dotnet --list-sdks check "version" dotnet --version @@ -14,9 +14,5 @@ check "version" dotnet --version check "current link info" /usr/local/dotnet/current/dotnet --info check "current link sdk directory" ls -l /usr/local/dotnet/current/sdk -# TODO: Installer script defaults to .NET 6 as that's LTS. Update this test or remove it. -# echo "Validating expected version present..." -# check "some major version of dotnet 7 is installed" bash -c "dotnet --version | grep '7\.[0-9]*\.[0-9]*'" - # Report result reportResults |