Skip to content

Latest commit

 

History

History
49 lines (42 loc) · 1.03 KB

README.md

File metadata and controls

49 lines (42 loc) · 1.03 KB

totoro

tci

Continuous integration of totoro.


What is ci config file?

[
  {
    "group": "Arale",
    "name": "base",
    "runner": "http://aralejs.org/base/tests/runner.html"
    "email": "[email protected]"
  },
  {
    "group": "Arale",
    "name": "class",
    "runner": "http://aralejs.org/class/tests/runner.html"
    "email": ["[email protected]", "[email protected]"]
  }
]

All repeated config could be written once

{
  "group": "Arale",
  "notice": 1,        // undefined: notice when test finished
                      // 0: notice when test succeeded
                      // 1: notice when test failed
  "tests": [
    {
      "name": "base",
      "runner": "http://aralejs.org/base/tests/runner.html"
      "email": "[email protected]"
    },
    {
      "name": "class",
      "runner": "http://aralejs.org/class/tests/runner.html"
      "email": ["[email protected]", "[email protected]"]
    }
  ]
}