Skip to content

Commit

Permalink
Move app runner to integration support directory
Browse files Browse the repository at this point in the history
It's only for the integration tests. Leaves the test directory itself
for other test related things that are not for the integration tests.
  • Loading branch information
tombruijn committed Aug 10, 2021
1 parent f952755 commit 6bf7f74
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/express/test/spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require_relative "../../../../test/support/app_runner"
require_relative "../../../../test/integration/support/app_runner"

RSpec.configure do |config|
config.example_status_persistence_file_path = "spec/examples.txt"
Expand Down
2 changes: 1 addition & 1 deletion packages/koa/test/spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require_relative "../../../../test/support/app_runner"
require_relative "../../../../test/integration/support/app_runner"

RSpec.configure do |config|
config.example_status_persistence_file_path = "spec/examples.txt"
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/test/spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require_relative "../../../../test/support/app_runner"
require_relative "../../../../test/integration/support/app_runner"

RSpec.configure do |config|
config.example_status_persistence_file_path = "spec/examples.txt"
Expand Down
File renamed without changes.

0 comments on commit 6bf7f74

Please sign in to comment.