describe "this describe" {

  test "a test" {
    assert.equals(2, 2)
  }

  test "another test" {
    const a = 2
    assert.equals(2, a)
  }

  test "another test with longer name" {
    assert.equals("aaa", "aaa")
  }

}