mozyのかきおき

mozyの読書感想文や思考置き場

2019-01-07から1日間の記事一覧

Railsのテストを CIでかけた時に Capybara のエラーがでる原因

経緯 RailsのテストをCIでかけた時に以下のようなエラーが発生した error: UserRegistrationsTest#test_hogehoge: Capybara::ElementNotFound: Unable to find option "piyo" 原因 システムテストはアプリのユーザー操作のテストに使えます。テストは、実際…

npm run watch と npm run watch-poll の違い

違い npm run watch と npm run watch-poll の違いは、watchは ファイルの変更をみている。 (特定のシステムの場合はうまくいかない) watch-poll は 変更を 1秒単位などで 定期的に確認をする。 watch will listen for file changes, however, on certain sy…