Skip to content
This repository was archived by the owner on Mar 11, 2024. It is now read-only.

Commit 090d219

Browse files
authored
Update to Grafana 10.0.0 (#36)
* Update to Grafana 10.0.0 * Update dependencies * Fix e2e tests
1 parent bfef9f6 commit 090d219

File tree

5 files changed

+1130
-1040
lines changed

5 files changed

+1130
-1040
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Change Log
22

3-
## 2.5.0 (IN PROGRESS)
3+
## 2.5.0 (2023-06-18)
44

55
### Features / Enhancements
66

77
- Update package.json and workflows (#31, #32, #34)
88
- Update requirements in README (#33)
99
- Migrate to Plugin Tools 1.5.2 (#35)
10+
- Update to Grafana 10.0.0 (#36)
1011

1112
## 2.4.0 (2023-05-27)
1213

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![Dashboard](https://github.com/VolkovLabs/volkovlabs-abc-panel/raw/main/src/img/dashboard.png)
44

5-
![Grafana 9](https://img.shields.io/badge/Grafana-9.5.2-orange)
5+
![Grafana 10](https://img.shields.io/badge/Grafana-10.0.0-orange)
66
![CI](https://github.com/volkovlabs/volkovlabs-abc-panel/workflows/CI/badge.svg)
77
![E2E](https://github.com/volkovlabs/volkovlabs-abc-panel/workflows/E2E/badge.svg)
88
[![codecov](https://codecov.io/gh/VolkovLabs/volkovlabs-abc-panel/branch/main/graph/badge.svg)](https://codecov.io/gh/VolkovLabs/volkovlabs-abc-panel)

cypress/integration/01-view-panel.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ describe('Viewing an Abc panel', () => {
2929
/**
3030
* Root
3131
*/
32-
const chart = currentPanel.find(getTestIdSelector(TestIds.panel.root));
33-
chart.should('be.visible');
32+
const root = currentPanel.find(getTestIdSelector(TestIds.panel.root));
33+
root.should('be.visible');
3434

3535
/**
3636
* Screenshot
3737
*/
38-
chart.screenshot(testedPanel.title);
38+
root.screenshot(testedPanel.title);
3939
e2e().compareScreenshots({ name: testedPanel.title, threshold: 0.05 });
4040
});
4141
});

0 commit comments

Comments
 (0)