summaryrefslogtreecommitdiff
path: root/integration/test/src/LargeProjectTests.scala
blob: e20bc9326d75d8984c556a45854235342f88b0fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package mill.integration

import mill.util.ScriptTestSuite
import utest._

class LargeProjectTests(fork: Boolean)
  extends ScriptTestSuite(fork) {
  def workspaceSlug: String = "large-project"
  def scriptSourcePath: os.Path = os.pwd / 'integration / 'test / 'resources / workspaceSlug

  val tests = Tests{
    initWorkspace()
    'test - {

      assert(eval("foo.common.one.compile"))
    }

  }
}