diff --git a/public/app/plugins/datasource/prometheus/components/__snapshots__/PromExploreExtraField.test.tsx.snap b/public/app/plugins/datasource/prometheus/components/__snapshots__/PromExploreExtraField.test.tsx.snap
new file mode 100644
index 00000000000..3f10e3ec74a
--- /dev/null
+++ b/public/app/plugins/datasource/prometheus/components/__snapshots__/PromExploreExtraField.test.tsx.snap
@@ -0,0 +1,26 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`PrometheusExploreExtraField should render component 1`] = `
+
+
+
+ Prometheus Explore Extra Field
+
+
+
+
+`;
diff --git a/public/app/plugins/datasource/prometheus/components/__snapshots__/PromExploreQueryEditor.test.tsx.snap b/public/app/plugins/datasource/prometheus/components/__snapshots__/PromExploreQueryEditor.test.tsx.snap
new file mode 100644
index 00000000000..a7a90d2cd84
--- /dev/null
+++ b/public/app/plugins/datasource/prometheus/components/__snapshots__/PromExploreQueryEditor.test.tsx.snap
@@ -0,0 +1,60 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`PromExploreQueryEditor should render component 1`] = `
+
+ }
+ data={
+ Object {
+ "request": Object {
+ "app": "Grafana",
+ "dashboardId": 1,
+ "interval": "1s",
+ "panelId": 1,
+ "range": Object {
+ "from": "2020-01-01T00:00:00.000Z",
+ "raw": Object {
+ "from": "2020-01-01T00:00:00.000Z",
+ "to": "2020-01-02T00:00:00.000Z",
+ },
+ "to": "2020-01-02T00:00:00.000Z",
+ },
+ "requestId": "1",
+ "scopedVars": Object {},
+ "startTime": 0,
+ "targets": Array [],
+ "timezone": "GMT",
+ },
+ "series": Array [],
+ "state": "NotStarted",
+ "timeRange": Object {
+ "from": "2020-01-01T00:00:00.000Z",
+ "raw": Object {
+ "from": "2020-01-01T00:00:00.000Z",
+ "to": "2020-01-02T00:00:00.000Z",
+ },
+ "to": "2020-01-02T00:00:00.000Z",
+ },
+ }
+ }
+ datasource={Object {}}
+ history={Array []}
+ onChange={[MockFunction]}
+ onRunQuery={[MockFunction]}
+ query={
+ Object {
+ "expr": "",
+ "interval": "1s",
+ "refId": "A",
+ }
+ }
+/>
+`;
diff --git a/public/app/plugins/datasource/prometheus/module.ts b/public/app/plugins/datasource/prometheus/module.ts
index df7e67d9f97..eba42cec3f9 100644
--- a/public/app/plugins/datasource/prometheus/module.ts
+++ b/public/app/plugins/datasource/prometheus/module.ts
@@ -3,7 +3,7 @@ import { ANNOTATION_QUERY_STEP_DEFAULT, PrometheusDatasource } from './datasourc
import { PromQueryEditor } from './components/PromQueryEditor';
import PromCheatSheet from './components/PromCheatSheet';
-import { PromExploreQueryEditor } from './components/PromExploreQueryEditor';
+import PromExploreQueryEditor from './components/PromExploreQueryEditor';
import { ConfigEditor } from './configuration/ConfigEditor';