blob: 067046b687977f50488f2cc34adf0570f38bcf89 (
plain) (
tree)
|
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Always run these checks as the non-root user
user="$(whoami)"
check "user" grep vscode <<< "$user"
# Check for an installation of JupyterLab
check "version" jupyter lab --version
# Report result
reportResults
|