add some test settings for ui testing

This commit is contained in:
Jiiks 2018-01-24 12:37:28 +02:00
parent 87b07d0a0e
commit 17a8c2372b
1 changed files with 16 additions and 3 deletions

View File

@ -6,7 +6,20 @@
"description": "Example Plugin Description"
},
"main": "index.js",
"defaultConfig": {
"foo": "bar"
}
"defaultConfig": [
{
"id": "test-setting-1",
"type": "bool",
"value": false,
"text": "Bool Test Setting",
"hint": "Bool Test Setting Hint"
},
{
"id": "test-setting-2",
"type": "text",
"value": "defaultValue",
"text": "Text Test Setting",
"hint": "Text Test Setting Hint"
}
]
}