Class: Suite

Suite

new Suite()

type Suite { name :: String tests :: [Suite | Test] beforeEach :: [Future(Error, Void)] afterEeach :: [Future(Error, Void)] beforeAll :: [Future(Error, Void)] afterAll :: [Future(Error, Void)] }

Represents a test Suite.

Source: