#解決したい事
お世話になっております。
github actions
でRSpec
の自動テストをしてるのですが、ActionView::Template::Error:
というのが表示されてしまいます。
これはwebpacker
などjavascript
系のライブラリをインストールする記述を追加しなければいけないという事でしょうか?
uses: actions/setup-node@v1
でインストールしているという認識だったのですが違うのでしょうか?
わかる方いましたら是非知恵を貸していただけると幸いです。
よろしくお願いします。
#エラー
Run bundle exec rspec ....................**FFF..FF.FF....FFFF.FF.FFFF. Pending: (Failures listed here are expected and do not affect your suite's status) 1) Habits POST #create パラメータが妥当な場合 createが成功する事 # Temporarily skipped with xit # ./spec/requests/habits_request_spec.rb:16 2) Habits POST #create パラメータが妥当な場合 habit.userのshoeページへリダイレクトされる # Temporarily skipped with xit # ./spec/requests/habits_request_spec.rb:21 Failures: 1) Habits ログイン済み 習慣の登録ページが表示される リクエストが成功する Failure/Error: <%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %> ActionView::Template::Error: Webpacker can't find application in /__w/Life-changing/Life-changing/public/packs-test/manifest.json. Possible causes: 1. You want to set webpacker.yml value of compile to true for your environment unless you are using the `webpack -w` or the webpack-dev-server. 2. webpack has not yet re-run to reflect updates. 3. You have misconfigured Webpacker's config/webpacker.yml file. 4. Your webpack configuration is not creating a manifest. Your manifest contains: { }
ruby.yml
name: Ruby #Githubリポジトリの[Actions]タブに表示されるワークフローの名前 on: [push] # ワークフローを自動的にトリガーするイベント jobs: # このファイルで実行されるジョブをグループ化(仮想環境の新しいインスタンスで実行される) run_spec: name: Run spec runs-on: ubuntu-latest #ジョブを実行する仮想マシン services: postgres: image: postgres:12 ports: - 5432:5432 env: POSTGRES_USER: postgres POSTGRES_PASSWORD: password options: >- --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 container: image: ruby:2.6.3 env: RAILS_ENV: test POSTGRES_HOST: postgres RAILS_DATABASE_USER: postgres RAILS_DATABASE_PASSWORD: password steps: #ジョブが実行する処理の集合 - name: checkout uses: actions/checkout@v1 - name: bundler set up run: | gem install bundler bundle install - name: install node uses: actions/setup-node@v1 with: node-version: '12' - name: db migrate run: | bundle exec rails db:create bundle exec rails db:migrate - name: Run RSpec run: | bundle exec rspec
database.yml
# SQLite. Versions 3.8.0 and up are supported. # gem install sqlite3 # # Ensure the SQLite 3 gem is defined in your Gemfile # gem 'sqlite3' # default: &default #共通部分にアンカーで名前をつける adapter: postgresql encoding: unicode username: postgres #追加 password: password #追加(docker-compose.ymlのPOSTGRES_PASSWORDで指定した値) pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> timeout: 5000 development: #ここでdefaultとして呼び出し、スッキリ書ける <<: *default database: Life-changing_development host: db # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". # Do not set this db to the same as development or production. test: <<: *default database: Life-changing_test host: postgres production: <<: *default adapter: postgresql database: HabitDB #RDSで作成したDB username: postgres password: Hanayama3 host: habit-is-power-db.cx2hifxeqkan.ap-northeast-1.rds.amazonaws.com
環境
Rails 6.0.3.4
ruby 2.6.3p62
RSpec 3.10
- rspec-core 3.10.0
- rspec-expectations 3.10.0
- rspec-mocks 3.10.0
- rspec-rails 4.0.1
- rspec-support 3.10.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。