Skip to content

Commit

Permalink
Checks no longer desired removed
Browse files Browse the repository at this point in the history
  • Loading branch information
twometresteve committed Jan 12, 2024
1 parent afd3637 commit 2b9dfe8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions features/steps/app_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,13 @@ def skip_between(os, version_lo, version_hi)
# Ensure fixture has read the command
count = 100
sleep 0.1 until Maze::Server.commands.remaining.empty? || (count -= 1) < 1
raise 'Test fixture did not GET /command' unless Maze::Server.commands.remaining.empty?
end

When('I invoke {string}') do |method_name|
Maze::Server.commands.add({ action: "invoke_method", args: [method_name] })
# Ensure fixture has read the command
count = 100
sleep 0.1 until Maze::Server.commands.remaining.empty? || (count -= 1) < 1
raise 'Test fixture did not GET /command' unless Maze::Server.commands.remaining.empty?
end

When('I invoke {string} with parameter {string}') do |method_name, arg1|
Expand All @@ -48,7 +46,6 @@ def skip_between(os, version_lo, version_hi)
# Ensure fixture has read the command
count = 100
sleep 0.1 until Maze::Server.commands.remaining.empty? || (count -= 1) < 1
raise 'Test fixture did not GET /command' unless Maze::Server.commands.remaining.empty?
end

# Note:
Expand Down

0 comments on commit 2b9dfe8

Please sign in to comment.