mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-27 07:28:12 +08:00
12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
import { BrowserRouter as Router } from 'react-router-dom';
|
|
|
|
import Routes from '../../src/routes';
|
|
|
|
describe('Routes', () => {
|
|
it('contains spec with an expectation', () => {
|
|
expect(shallow(<Routes />).find(Router)).to.have.length(1);
|
|
});
|
|
});
|