routine.json
The routine.json configures the details of how your routine runs
Routine
.asserted/routine.json
{
// Globally-unique Routine ID
"id": "rt-I5zgwerPGE",
// Globally-unique Project ID
"projectId": "p-1Hewr0s9Z",
// Routine Name (can be anything up to 30 characters)
"name": "my-routine",
// Routine Description (can be up to 100 characters)
"description": "some awesome description",
// Interval to run the routine on
"interval": {
"unit": "min",
"value": 5
},
// Version of the fixed dependencies included during the
// run.
// - "v1" is the only option for free plans
// - "custom" may be used for paid plans that require extra dependencies
"dependencies": "v1",
// Mocha-specific configuration
"mocha": {
"files": [
"**/*.asrtd.js"
],
"ignore": [],
"bail": false,
"ui": "bdd"
},
// Overall timeout in seconds for this routine
"timeoutSec": 1
}Updates
Last updated