blob: 0c9a48b37911e850cb8d258e22465302d62626ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
# TFSec specific tests
check "tfsec" tfsec --version
# Report result
reportResults
|