@grafana/plugin-e2e 0.14.0-canary.740.f36a8a4.0 → 0.14.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.
|
@@ -8,7 +8,7 @@ const path_1 = __importDefault(require("path"));
|
|
|
8
8
|
const yaml_1 = require("yaml");
|
|
9
9
|
const readProvisionedDataSource = async ({ provisioningRootDir }, use) => {
|
|
10
10
|
await use(async ({ fileName: filePath, name }) => {
|
|
11
|
-
const resolvedPath = path_1.default.resolve(path_1.default.join(provisioningRootDir,
|
|
11
|
+
const resolvedPath = path_1.default.resolve(path_1.default.join(provisioningRootDir, 'datasources', filePath));
|
|
12
12
|
const contents = await fs_1.promises.readFile(resolvedPath, 'utf8');
|
|
13
13
|
const yml = (0, yaml_1.parse)(contents);
|
|
14
14
|
if (!name) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-e2e",
|
|
3
|
-
"version": "0.14.0
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"semver": "^7.5.4",
|
|
46
46
|
"uuid": "^9.0.1"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "9b4c8833541aaa24764b569820ee80a84d1ae5e7"
|
|
49
49
|
}
|