如何在测试 运行 之前执行 sbt-web 资产管道,特别是 sbt-concat?
How do I execute the sbt-web asset pipeline, specifically sbt-concat, before the tests are run?
在测试 运行 之前,我需要一个 JavaScript 文件。它是使用 sbt-concat 创建的。如何将 sbt-web 资产管道添加为 运行 规范测试的依赖项?
我想你可以试试
(test in Test) <<= (test in Test) dependsOn (packageBin in Assets)
在测试 运行 之前,我需要一个 JavaScript 文件。它是使用 sbt-concat 创建的。如何将 sbt-web 资产管道添加为 运行 规范测试的依赖项?
我想你可以试试
(test in Test) <<= (test in Test) dependsOn (packageBin in Assets)