0

我有这个规范文件,它试图运行一个将运行 dotnet cli 程序的脚本:

require 'spec_helper'

RSpec.describe 'Integration test', type: :aruba do
  let(:command) { run "dotnet-test" }

  it "test" do
    command.write("test\n")
    stop_all_commands
    expect(command.output).to end_with("success\n")
  end
end

dotnet-test脚本:

dotnet run --project ../SomeProject/src/SomeProject.Console/SomeProject.Console.csproj -- $1

但我得到错误:

Failure/Error: expect(command.output).to end_with("success\n")
       expected "MSBUILD : error MSB1009: Project file does not exist.\nSwitch: ../SomeProject/src/SomeProject.Console/SomeProject.Console.csproj\n\nThe build failed. Please fix the build errors and run again.\n" to end with "success\n"

但是,如果我从该目录运行脚本,则程序运行良好。无法弄清楚两者之间可能有什么区别。非常感谢您的帮助。

4

1 回答 1

1

听起来您尝试运行的脚本依赖于正确执行的相对路径。在这种情况下,您可能需要cd在您的规范内。

请参阅https://relishapp.com/cucumber/aruba/docs/filesystem/change-current-working-directory

尝试使用文件的绝对路径而不是

../SomeProject/src/SomeProject.Console/SomeProject.Console.csproj

你能把完整的路径,比如:

/Users/yourusername/pathtosomeproject/SomeProject/src/SomeProject.Console/SomeProject.Console.csproj

显然,您需要更换pathtosomeproject到它实际所在的位置。

于 2018-11-10T12:44:50.430 回答