Home Reference Source

application/__tests__/components/dashboard-test.js

jest.unmock('./../../components/dashboard');

import React from 'react';
import ReactDOM from 'react-dom';
import TestUtils from 'react-addons-test-utils';
import Immutable from 'immutable';
import sinon from 'sinon';
import AltTestingUtils from 'alt-utils/lib/AltTestingUtils';
import uuid from 'uuid';

import Dashboard from './../../components/dashboard';

describe('DashboardComponent', () => {

    beforeEach(() => {
        // it's like the clock is shadow installed or something...
        jasmine.clock().uninstall();
    });

    it('dashboard component is pending');

});