Skip to content

Commit ec792e8

Browse files
justin808claude
andcommitted
Fix require path in RBS runtime checking spec
Change require_relative from "../spec_helper" to "spec_helper" to match the correct path structure. The spec_helper is located at spec/react_on_rails/spec_helper.rb, not spec/spec_helper.rb. This fixes the LoadError in CI minimum dependency tests. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent bd1265e commit ec792e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/react_on_rails/rbs_runtime_checking_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
require_relative "../spec_helper"
3+
require_relative "spec_helper"
44

55
# This spec validates that RBS runtime type checking catches actual type violations
66
# when enabled during test execution. These tests should only run when RBS is available.

0 commit comments

Comments
 (0)