@grafana/plugin-e2e 0.6.1 → 0.7.0-canary.634.976bd5d.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1 +1,7 @@
1
1
  # Grafana / Plugin E2E
2
+
3
+ E2E test Grafana plugins with ease.
4
+
5
+ ## @grafana/plugin-e2e
6
+
7
+ @grafana/plugin-e2e is an npm package that enhances [Playwright test](https://github.com/microsoft/playwright/) with fixtures, models and expect matchers that enables testing a Grafana plugin across multiple versions of Grafana.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/plugin-e2e",
3
- "version": "0.6.1",
3
+ "version": "0.7.0-canary.634.976bd5d.0",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [
@@ -27,7 +27,8 @@
27
27
  "typecheck": "tsc --emitDeclarationOnly false --noEmit",
28
28
  "test": "jest",
29
29
  "playwright:test": "npx playwright test",
30
- "playwright:test:ui": "npx playwright test --ui"
30
+ "playwright:test:ui": "npx playwright test --ui",
31
+ "playwright:showreport": "npx playwright show-report"
31
32
  },
32
33
  "engines": {
33
34
  "node": ">=20"
@@ -44,5 +45,5 @@
44
45
  "semver": "^7.5.4",
45
46
  "uuid": "^9.0.1"
46
47
  },
47
- "gitHead": "8f8b46c1b25f555d30b9ffbe62f09cc62c1383f5"
48
+ "gitHead": "976bd5d3edd77d4864ec37ce18e5cb181c733ce9"
48
49
  }