-
Project Dashboard
+
+
+ {project.display_name}
+
+
{language &&
diff --git a/src/index.jsx b/src/index.jsx
index 3a07b2b2..45a2c520 100644
--- a/src/index.jsx
+++ b/src/index.jsx
@@ -5,7 +5,6 @@ import { Provider } from 'react-redux';
import oauth from 'panoptes-client/lib/oauth';
import App from './components/App';
-import About from './components/About';
import config from './constants/config';
import configureStore from './store';
import ProjectContentsContainer from './containers/ProjectContentsContainer';
@@ -33,7 +32,6 @@ oauth.init(config.panoptesAppId)
-
),
diff --git a/test/components/About.test.jsx b/test/components/About.test.jsx
deleted file mode 100644
index dc408836..00000000
--- a/test/components/About.test.jsx
+++ /dev/null
@@ -1,27 +0,0 @@
-// Passing arrow functions (lambdas) to Mocha is discouraged
-// https://mochajs.org/#arrow-functions
-// eslint prefer-arrow-callback: 0, func-names: 0, 'react/jsx-boolean-value': ['error', 'always']
-// global describe, it, beforeEach, before
-
-import React from 'react';
-import assert from 'assert';
-import { shallow } from 'enzyme';
-import About from '../../src/components/About';
-
-describe('About', () => {
-
- it('should render without crashing', function() {
- shallow();
- });
-
- it('should have a div as container', function() {
- const wrapper = shallow();
- assert.strictEqual(wrapper.type(), 'div');
- });
-
- it('should have an h2 tag containing the text "About"', function() {
- const wrapper = shallow();
- const title = wrapper.find('h2');
- assert.strictEqual(title.contains(
About
), true);
- });
-});