-
Working through the example usage for detik. So far I have been able to get it to work by using a I was looking at Here is my setup_suite.bash: setup_suite() {
if [[ $CI == true ]]; then
TEST_PREFIX="/usr/lib"
else
TEST_PREFIX="$(brew --prefix)/lib"
fi
load "${TEST_PREFIX}/bats-assert/load.bash"
load "${TEST_PREFIX}/bats-detik/detik.bash"
load "${TEST_PREFIX}/bats-file/load.bash"
load "${TEST_PREFIX}/bats-support/load.bash"
# shellcheck disable=SC2034
DETIK_CLIENT_NAME="kubectl"
# shellcheck disable=SC2034
DETIK_CLIENT_NAMESPACE="argocd"
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Looks like I didn't read the docs well enough 😅 I was able to use this example to create a |
Beta Was this translation helpful? Give feedback.
Looks like I didn't read the docs well enough 😅 I was able to use this example to create a
helper
file to load in the common config.