You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/spec/features/playback_spec.rb

25 lines
557 B
Ruby

require 'rails_helper'
describe 'Asciicast playback', :js => true, :slow => true do
let(:asciicast) { create(:asciicast) }
describe "from fixture" do
before do
@old_wait_time = Capybara.default_wait_time
Capybara.default_wait_time = 15
end
after do
Capybara.default_wait_time = @old_wait_time
end
it "is successful" do
visit asciicast_path(asciicast, speed: 5)
find(".start-prompt .play-button").click
page.should have_css('.time-remaining', visible: false, text: '-00:0')
end
end
end