diff --git a/frontend/test/xray/xray.integ.spec.js b/frontend/test/xray/xray.integ.spec.js
index 15873f6c5e47014b4cc6a3189dba82b86b70cf0d..6d574f0270e8bb6929882a18633848b4836c55cc 100644
--- a/frontend/test/xray/xray.integ.spec.js
+++ b/frontend/test/xray/xray.integ.spec.js
@@ -8,16 +8,24 @@ import {
 } from "__support__/enzyme_utils"
 
 import { mount } from "enzyme";
-import { CardApi, SegmentApi, SettingsApi } from "metabase/services";
+import {
+    CardApi,
+    SegmentApi,
+    SettingsApi
+} from "metabase/services";
 
 import { delay } from "metabase/lib/promise";
 import { FETCH_XRAY, LOAD_XRAY } from "metabase/xray/xray";
+
+import FieldXray from "metabase/xray/containers/FieldXray";
 import TableXRay from "metabase/xray/containers/TableXRay";
+import SegmentXRay from "metabase/xray/containers/SegmentXRay";
+import CardXRay from "metabase/xray/containers/CardXRay";
+
 import CostSelect from "metabase/xray/components/CostSelect";
 import Constituent from "metabase/xray/components/Constituent";
-import SegmentXRay from "metabase/xray/containers/SegmentXRay";
+
 import Question from "metabase-lib/lib/Question";
-import CardXRay from "metabase/xray/containers/CardXRay";
 import * as Urls from "metabase/lib/urls";
 import { INITIALIZE_QB, QUERY_COMPLETED } from "metabase/query_builder/actions";
 import ActionsWidget from "metabase/query_builder/components/ActionsWidget";
@@ -72,8 +80,8 @@ describe("xray integration tests", () => {
         await SettingsApi.put({ key: 'enable-xrays' }, true)
     })
 
-    describe("for table xray", async () => {
-        it("should render the table xray page without errors", async () => {
+    describe("table x-rays", async () => {
+        it("should render the table x-ray page without errors", async () => {
             const store = await createTestStore()
             store.pushPath(`/xray/table/1/approximate`);
 
@@ -88,6 +96,21 @@ describe("xray integration tests", () => {
         })
     })
 
+    describe("field x-rays", async () => {
+        it("should render the field x-ray page without errors", async () => {
+            const store = await createTestStore()
+            store.pushPath(`/xray/field/1/approximate`);
+
+            const app = mount(store.getAppContainer());
+            await store.waitForActions(FETCH_XRAY, LOAD_XRAY, { timeout: 20000 })
+
+            const fieldXRay = app.find(FieldXray)
+            expect(fieldXRay.length).toBe(1)
+            expect(fieldXRay.find(CostSelect).length).toBe(1)
+
+        })
+    })
+
     // NOTE Atte Keinänen 8/24/17: I wanted to test both QB action widget xray action and the card/segment xray pages
     // in the same tests so that we see that end-to-end user experience matches our expectations