We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83aba6 commit 1563089Copy full SHA for 1563089
integration/feature/things-outside-top-level-module/src/ThingsOutsideTopLevelModuleTests.scala
@@ -1,11 +1,13 @@
1
-import mill.testkit.IntegrationTestSuite
2
-import utest.{assert, *}
+package mill.integration
3
4
-object ThingsOutsideTopLevelModuleTests extends IntegrationTestSuite {
5
- val tests: Tests = Tests {
6
- initWorkspace()
+import mill.testkit.UtestIntegrationTestSuite
+
+import utest._
7
8
- test("success") {
+object ThingsOutsideTopLevelModuleTests extends UtestIntegrationTestSuite {
+ val tests: Tests = Tests {
9
+ test("success") - integrationTest { tester =>
10
+ import tester._
11
val res = eval(("resolve", "_"))
12
assert(res.isSuccess)
13
}
0 commit comments