Skip to content

Commit

Permalink
change test user id
Browse files Browse the repository at this point in the history
  • Loading branch information
ridhwaans committed Apr 12, 2024
1 parent a3bab92 commit 20f85ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions test/base/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ check "check for vim-plug" ls -1 $VIMPLUG_PATH/autoload/plug.vim | wc -l

source ~/.bashrc

cat ~/.bashrc

echo "NVM_DIR is $PATH"
echo "PATH is $PATH"
if [ -s "$NVM_DIR/nvm.sh" ]; then
echo "The file $NVM_DIR/nvm.sh exists and is not empty."
fi
Expand Down
8 changes: 4 additions & 4 deletions test/base/scenarios.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"base": {
"image": "mcr.microsoft.com/devcontainers/base:debian",
"remoteUser": "vscode",
"remoteUser": "customUser",
"features": {
"base": {
"username": "vscode",
"userUid": "1000",
"userGid": "1000"
"username": "customUser",
"userUid": "1055",
"userGid": "1055"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions test/base/user_default_zsh.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env zsh

set -e
#set -e

# Optional: Import test library
source dev-container-features-test-lib

check "user lang should be UTF-8" echo $LANG | grep "en_US.UTF-8"
check "check for zplug" zplug --version
check "check for zplug" zplug --version

0 comments on commit 20f85ac

Please sign in to comment.