We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ca145 commit 0f511feCopy full SHA for 0f511fe
resources/data-provider.mjs
@@ -1,3 +1,5 @@
1
+// example url for local testing:
2
+// http://localhost:8080/?config=http://localhost:8080/resources/config.json
3
import { defaultSuites } from "./tests.mjs";
4
import { params } from "./shared/params.mjs";
5
@@ -75,6 +77,7 @@ export class DataProvider {
75
77
}
76
78
79
async init() {
80
+ console.log("params.config", params.config);
81
if (params.config) {
82
const response = await fetch(params.config);
83
const config = await response.json();
0 commit comments