# How to use a specific environment inside a test-suite?
Override the useEnvAs method inside the TestSuite & provide the env name as follows:
class MyTestSuite extends FunSuite with SmilePerTest {
override def useEnvAs: String = "test"
test("add pass", Tag("add1")){
...
}
}