datajunction-ui 0.0.1-rc.26 → 0.0.1-rc.27

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datajunction-ui",
3
- "version": "0.0.1-rc.26",
3
+ "version": "0.0.1-rc.27",
4
4
  "description": "DataJunction Metrics Platform UI",
5
5
  "module": "src/index.tsx",
6
6
  "repository": {
@@ -37,6 +37,7 @@ describe('<NodePage />', () => {
37
37
  attributes: jest.fn(),
38
38
  dimensions: jest.fn(),
39
39
  setPartition: jest.fn(),
40
+ engines: jest.fn(),
40
41
  },
41
42
  };
42
43
  };
@@ -397,6 +398,7 @@ describe('<NodePage />', () => {
397
398
  djClient.DataJunctionAPI.columns.mockReturnValue(mocks.metricNodeColumns);
398
399
  djClient.DataJunctionAPI.attributes.mockReturnValue(mocks.attributes);
399
400
  djClient.DataJunctionAPI.dimensions.mockReturnValue(mocks.dimensions);
401
+ djClient.DataJunctionAPI.engines.mockReturnValue([]);
400
402
  djClient.DataJunctionAPI.setPartition.mockReturnValue({
401
403
  status: 200,
402
404
  json: { message: '' },