2

私は、開発マシンでいくつかの JavaScript テスト (CoffeeScript で記述) に小さじ 1 杯を使用しています。

→ bundle exec rake teaspoon
Starting the Teaspoon server...
Teaspoon running default suite at http://127.0.0.1:58786/teaspoon/default
................

Finished in 0.02500 seconds
16 examples, 0 failures

しかし、CircleCI では次のエラーで終了します。

$ bundle exec rake teaspoon --trace
** Invoke teaspoon (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute teaspoon
Starting the Teaspoon server...
Teaspoon running default suite at http://127.0.0.1:60894/teaspoon/default
Failed to load: http://127.0.0.1:60894/teaspoon/default?reporter=Console bundle exec rake teaspoon --trace returned exit code 1

誰でもこのエラーで私を助けることができますか? ありがとう

4

2 に答える 2

0

私にとっての問題は、次のものを に追加する必要があったことですconfig/initializers/assets.rb

Rails.application.config.assets.precompile += %w( teaspoon-jasmine.js jasmine/1.3.1.js teaspoon-teaspoon.js teaspoon.css )

..そして、サーバーを再起動します。

これは、ジャスミンを使用しており、動作させるために事前にコンパイルする必要があるためです。

于 2014-10-08T14:12:50.730 に答える
0

CircleCIで働いています。上記の情報だけでは、ここで何が起こっているのかを理解するのは少し難しいです。sayhi@circleci.com 宛てに ping を送信していただけますでしょうか。

于 2014-09-17T20:42:19.170 に答える