55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"tasks": {
|
|
"make": "deno run --allow-env --allow-read --allow-write=.deno-make.json --allow-run=deno ./mod.ts $0"
|
|
},
|
|
"+tasks": {
|
|
"flags:none": {
|
|
"task": "deno test mod_test.ts",
|
|
"cwd": "tests",
|
|
"deno": {
|
|
"test": {}
|
|
}
|
|
},
|
|
"flags:test_1": {
|
|
"task": "deno test mod_test.ts",
|
|
"cwd": "tests",
|
|
"deno": {
|
|
"test": {
|
|
"doc": true,
|
|
"traceOps": true,
|
|
"failFast": true,
|
|
"shuffle": true,
|
|
"parallel": true,
|
|
"run": false,
|
|
"allowNone": true,
|
|
"coverage": ".coverage",
|
|
"reporter": "junit",
|
|
"filter": "junit",
|
|
"junitPath": ".junit.xml",
|
|
"ignore": ["*_test.ts"]
|
|
}
|
|
}
|
|
},
|
|
"flags:test_2": {
|
|
"task": "deno test mod_test.ts",
|
|
"cwd": "tests",
|
|
"deno": {
|
|
"test": {
|
|
"failFast": false,
|
|
"shuffle": false
|
|
}
|
|
}
|
|
},
|
|
"flags:test_3": {
|
|
"task": "deno test mod_test.ts",
|
|
"cwd": "tests",
|
|
"deno": {
|
|
"test": {
|
|
"failFast": 1,
|
|
"shuffle": 1
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|