We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529e096 commit 20be531Copy full SHA for 20be531
test/idempotency_test.rb
@@ -1,6 +1,6 @@
1
# frozen_string_literal: true
2
3
-return if ENV["FAST"]
+return unless ENV["CI"]
4
require_relative "test_helper"
5
6
module SyntaxTree
test/visitor_test.rb
@@ -3,7 +3,7 @@
class VisitorTest < Minitest::Test
- unless ENV["FAST"]
+ if ENV["CI"]
7
def test_visit_all_nodes
8
visitor = SyntaxTree::Visitor.new
9
0 commit comments