mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
ac27fea5bc
* Sandbox: initial dummy datasource plugin for e2e * WIP: tests * Add metrics to plugin.json so it shows up in explore * Fix false positives in frontend-sandbox-datasource.spec.ts * Change typed name to be static * Add code to delete the datasource after tests are complete * Add fail on status code * Update tests for more config * Replace visit with existing page * Delete cleanup code
27 lines
632 B
JSON
27 lines
632 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/grafana/grafana/master/docs/sources/developers/plugins/plugin.schema.json",
|
|
"type": "datasource",
|
|
"name": "Sandbox datasource test plugin",
|
|
"id": "sandbox-test-datasource",
|
|
"metrics": true,
|
|
"info": {
|
|
"keywords": ["explore", "datasource"],
|
|
"description": "",
|
|
"author": {
|
|
"name": "Grafana"
|
|
},
|
|
"logos": {
|
|
"small": "img/logo.svg",
|
|
"large": "img/logo.svg"
|
|
},
|
|
"links": [],
|
|
"screenshots": [],
|
|
"version": "1.0.0",
|
|
"updated": "2023-06-27"
|
|
},
|
|
"dependencies": {
|
|
"grafanaDependency": ">=10.0",
|
|
"plugins": []
|
|
}
|
|
}
|