Home Reference Source

application/__tests__/components/dashboard-test.js

  1. jest.unmock('./../../components/dashboard');
  2.  
  3. import React from 'react';
  4. import ReactDOM from 'react-dom';
  5. import TestUtils from 'react-addons-test-utils';
  6. import Immutable from 'immutable';
  7. import sinon from 'sinon';
  8. import AltTestingUtils from 'alt-utils/lib/AltTestingUtils';
  9. import uuid from 'uuid';
  10.  
  11. import Dashboard from './../../components/dashboard';
  12.  
  13. describe('DashboardComponent', () => {
  14.  
  15. beforeEach(() => {
  16. // it's like the clock is shadow installed or something...
  17. jasmine.clock().uninstall();
  18. });
  19.  
  20. it('dashboard component is pending');
  21.  
  22. });