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

Commit

Permalink
Update to Grafana 10.0.0 (#36)
Browse files Browse the repository at this point in the history
* Update to Grafana 10.0.0

* Update dependencies

* Fix e2e tests
  • Loading branch information
mikhail-vl authored Jun 18, 2023
1 parent bfef9f6 commit 090d219
Show file tree
Hide file tree
Showing 5 changed files with 1,130 additions and 1,040 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Change Log

## 2.5.0 (IN PROGRESS)
## 2.5.0 (2023-06-18)

### Features / Enhancements

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

## 2.4.0 (2023-05-27)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

![Grafana 9](https://img.shields.io/badge/Grafana-9.5.2-orange)
![Grafana 10](https://img.shields.io/badge/Grafana-10.0.0-orange)
![CI](https://github.com/volkovlabs/volkovlabs-abc-panel/workflows/CI/badge.svg)
![E2E](https://github.com/volkovlabs/volkovlabs-abc-panel/workflows/E2E/badge.svg)
[![codecov](https://codecov.io/gh/VolkovLabs/volkovlabs-abc-panel/branch/main/graph/badge.svg)](https://codecov.io/gh/VolkovLabs/volkovlabs-abc-panel)
Expand Down
6 changes: 3 additions & 3 deletions cypress/integration/01-view-panel.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ describe('Viewing an Abc panel', () => {
/**
* Root
*/
const chart = currentPanel.find(getTestIdSelector(TestIds.panel.root));
chart.should('be.visible');
const root = currentPanel.find(getTestIdSelector(TestIds.panel.root));
root.should('be.visible');

/**
* Screenshot
*/
chart.screenshot(testedPanel.title);
root.screenshot(testedPanel.title);
e2e().compareScreenshots({ name: testedPanel.title, threshold: 0.05 });
});
});
Loading

0 comments on commit 090d219

Please sign in to comment.