Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: update the integration install test to use static variable #495

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions test/integration/user_install_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ set -eux

# set up dependencies
rm -f Gemfile.lock
bundle remove actionmailer
bundle remove actionmailer || true
bundle remove rails || true
bundle add rails --skip-install ${RAILSOPTS:-}
bundle install --prefer-local

Expand Down Expand Up @@ -47,7 +48,7 @@ end
EOF

cat >> app/assets/tailwind/application.css <<EOF
@theme { --color-special: #abc12399; }
@theme static { --color-special: #abc12399; }
EOF

bin/rails tailwindcss:build still_here | grep "Rake process did not exit early"
Expand Down
3 changes: 2 additions & 1 deletion test/integration/user_upgrade_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ set -eux

# set up dependencies
rm -f Gemfile.lock
bundle remove actionmailer
bundle remove actionmailer || true
bundle remove rails || true
bundle add rails --skip-install ${RAILSOPTS:-}
bundle install --prefer-local

Expand Down