-
Notifications
You must be signed in to change notification settings - Fork 1
/
Manifest.json
51 lines (51 loc) · 1.71 KB
/
Manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "https://qooxdoo.org/schema/Manifest-2-0-0.json",
"info": {
"name": "Commandline Testrunner for Qooxdoo Apps",
"summary": "A node based testrunner for qooxdoo unit tests. It uses a headles instance of chrome to execute tests. It uses the TAP protocol to communicate between the browserbased tests and the nodebased testruner.",
"description": "The Testrunner looks for *.test classes in your application and runns all the tests contained therin. It follows the standard qooxdoo testing framework. You can continue using all the tests you wrote for qooxdoo 5.x.",
"keywords": [
"test runner",
"TAP"
],
"homepage": "https://github.com/qooxdoo/qxl.testtapper",
"license": "MIT",
"authors": [
{
"name": "Tobias Oetiker (oetiker)",
"email": "[email protected]"
},
{
"name": "Henner Kollmann (hkollmann)",
"email": "[email protected]"
}
],
"version": "2.0.3",
"sourceViewUri": "https://github.com/qooxdoo/qxl.testtapper/blob/%{qxGitBranch}/source/class/%{classFilePath}#L%{lineNumber}"
},
"provides": {
"namespace": "qxl.testtapper",
"encoding": "utf-8",
"class": "source/class",
"resource": "source/resource",
"translation": "source/translation",
"application": {
"class": "qxl.testtapper.Application",
"name": "testtapper",
"theme": "qx.theme.Simple",
"title": "Qooxdoo TestTAPper",
"environment": {
"qx.icontheme": "Tango",
"qxl.testtapper.testNameSpace": "qx.test"
},
"include": [
"qx.test.*"
],
"exclude": []
}
},
"requires": {
"@qooxdoo/framework": "^7.0.0",
"qooxdoo/qxl.logpane": "^2.0.0"
}
}