FIX: An ember build is required to run the system tests (#20725)

This commit is contained in:
Daniel Waterworth 2023-03-17 13:20:49 -05:00 committed by GitHub
parent cfee0cfee9
commit 293cb7bde2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -213,7 +213,10 @@ task "docker:test" do
@good &&= run_or_fail("bundle exec rspec #{params.join(" ")}".strip)
end
@good &&= run_or_fail("bundle exec rspec spec/system".strip) if ENV["RUN_SYSTEM_TESTS"]
if ENV["RUN_SYSTEM_TESTS"]
@good &&= run_or_fail("bin/ember-cli --build")
@good &&= run_or_fail("bundle exec rspec spec/system")
end
end
unless ENV["SKIP_PLUGINS"]