summaryrefslogtreecommitdiff
path: root/scalajslib/test/resources/hello-js-world/test/src/scalatest/MainSpec.scala
blob: 0c1eb76f5bc2943ad21a7005659f8ac3b17055c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import org.scalatest._

class MainSpec extends FlatSpec with Matchers {

  behavior of "Main"

  "vmName" should "contain js" in {
    Main.vmName should include ("js")
  }

  it should "contain Scala" in {
    Main.vmName should include ("Scala")
  }

}