mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
AddDataSource: Added missing phantom plugin (#21406)
* AddDataSource: Added missing phantom plugin * Fixed test
This commit is contained in:
@@ -51,6 +51,6 @@ describe('buildCategories', () => {
|
||||
|
||||
it('should add enterprise phantom plugins', () => {
|
||||
expect(categories[4].title).toBe('Enterprise plugins');
|
||||
expect(categories[4].plugins.length).toBe(5);
|
||||
expect(categories[4].plugins.length).toBe(6);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -116,6 +116,12 @@ function getEnterprisePhantomPlugins(): DataSourcePluginMeta[] {
|
||||
name: 'DataDog',
|
||||
imgUrl: 'public/img/plugins/datadog.png',
|
||||
}),
|
||||
getPhantomPlugin({
|
||||
id: 'grafana-newrelic-datasource',
|
||||
description: 'New Relic integration & data source',
|
||||
name: 'New Relic',
|
||||
imgUrl: 'public/img/plugins/newrelic.svg',
|
||||
}),
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user