blob: 33a9d41c304505863100b151828645a10f6ef3fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
check "version_on_path" bash -c "node -v | grep 'v19.1.0'"
check "pnpm" pnpm -v
# Report result
reportResults
|