From 6bf7f74f191ff25911d247abaf3f923bf7710293 Mon Sep 17 00:00:00 2001 From: Tom de Bruijn Date: Tue, 10 Aug 2021 15:15:09 +0200 Subject: [PATCH] Move app runner to integration support directory It's only for the integration tests. Leaves the test directory itself for other test related things that are not for the integration tests. --- packages/express/test/spec/spec_helper.rb | 2 +- packages/koa/test/spec/spec_helper.rb | 2 +- packages/nextjs/test/spec/spec_helper.rb | 2 +- test/{ => integration}/support/app_runner.rb | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename test/{ => integration}/support/app_runner.rb (100%) diff --git a/packages/express/test/spec/spec_helper.rb b/packages/express/test/spec/spec_helper.rb index b9270971..3b06078a 100644 --- a/packages/express/test/spec/spec_helper.rb +++ b/packages/express/test/spec/spec_helper.rb @@ -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" diff --git a/packages/koa/test/spec/spec_helper.rb b/packages/koa/test/spec/spec_helper.rb index b9270971..3b06078a 100644 --- a/packages/koa/test/spec/spec_helper.rb +++ b/packages/koa/test/spec/spec_helper.rb @@ -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" diff --git a/packages/nextjs/test/spec/spec_helper.rb b/packages/nextjs/test/spec/spec_helper.rb index b9270971..3b06078a 100644 --- a/packages/nextjs/test/spec/spec_helper.rb +++ b/packages/nextjs/test/spec/spec_helper.rb @@ -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" diff --git a/test/support/app_runner.rb b/test/integration/support/app_runner.rb similarity index 100% rename from test/support/app_runner.rb rename to test/integration/support/app_runner.rb