mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 06:43:44 +08:00
3736d66f17
Specifically fixes a bug in smoke-test where it would just move on after failing to install latest js dependencies with yarn.
12 lines
298 B
Ruby
12 lines
298 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Migrations::Import" do
|
|
subject(:cli) { system("migrations/import", exception: true) }
|
|
|
|
it "works" do
|
|
expect { cli }.to output(
|
|
include("Importing into Discourse #{Discourse::VERSION::STRING}"),
|
|
).to_stdout_from_any_process
|
|
end
|
|
end
|