blob: 955507fda0e1f922414862450a35b72f9ffe9474 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
# Bicep-specific tests
check "bicep" bicep --version
check "az bicep" az bicep version
# Report result
reportResults
|