blob: e26ec33d7c8fe828000547615c128b6ac08e00b1 (
plain) (
tree)
|
|
#!/bin/bash
set -e
# Import test library for `check` command
source dev-container-features-test-lib
# Check to make sure the user is vscode
check "user is vscode" whoami | grep vscode
# Sentinel specific tests
check "sentinel" sentinel --version
# Report result
reportResults
|