remove options to hide columns
This commit is contained in:
@@ -128,9 +128,6 @@ describe('ZabbixDatasource', () => {
|
||||
mode: 2,
|
||||
resultFormat: "table",
|
||||
table: {
|
||||
host: true,
|
||||
item: true,
|
||||
key: true,
|
||||
skipEmptyValues: false
|
||||
}
|
||||
}
|
||||
@@ -162,22 +159,6 @@ describe('ZabbixDatasource', () => {
|
||||
});
|
||||
});
|
||||
|
||||
it('should return table only with `Last value` column when other columns are not selected', () => {
|
||||
ctx.options.targets[0].table = {
|
||||
host: false,
|
||||
item: false,
|
||||
key: false,
|
||||
skipEmptyValues: false
|
||||
};
|
||||
return ctx.ds.query(ctx.options).then(result => {
|
||||
let tableData = result.data[0];
|
||||
expect(tableData.columns.length).toBe(1);
|
||||
expect(tableData.columns[0].text).toEqual('Last value');
|
||||
expect(tableData.rows[0].length).toBe(1);
|
||||
expect(tableData.rows[0][0]).toEqual('Linux last');
|
||||
});
|
||||
});
|
||||
|
||||
it('should skip item when last value is empty', () => {
|
||||
ctx.options.targets[0].skipEmptyValues = true;
|
||||
ctx.ds.zabbix.getHistory = jest.fn().mockReturnValue(Promise.resolve([
|
||||
|
||||
Reference in New Issue
Block a user