LoginSignup
5
5

More than 5 years have passed since last update.

Rspecで特定のテストを実行しない

Posted at

Rspec実行時、タグの前に~を付けると、そのタグのついたテストはスキップされる。

コマンド
$ bundle exec rspec -fd spec --tag ~js 
実行されない
    it "steps through the full story life cycle", :js => true do
      visit project_path(project)

      # 中略

      find('.story-title').should have_content('New story')
    end
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5