i.id === parseInt(testId, 10)
@@ -139,42 +120,6 @@ const Suite = () => {
const SelectedTest = ({ test }) => {
return test ? (
-
-
-
-
- Name
-
-
-
-
- {test.name}
-
-
-
-
-
-
- Tags
-
-
- {test.tags.map((tag, i) => {
- return {tag};
- })}
-
-
-
-
-
- Statuses
-
-
- Setup: {test.setup_status}
- Execution: {test.execution_status}
- Teardown: {test.teardown_status}
-
-
-
diff --git a/frontend/src/pages/Suite.styles.js b/frontend/src/pages/Suite.styles.js
index 1beb1333..f04aa1c6 100644
--- a/frontend/src/pages/Suite.styles.js
+++ b/frontend/src/pages/Suite.styles.js
@@ -1,51 +1,11 @@
import styled from 'styled-components';
import FA from 'react-fontawesome';
-import { NavLink } from 'react-router-dom';
export const ParentInfoContainer = styled.div`
display: flex;
padding: 20px 0;
`;
-export const SuiteNav = styled.div`
- list-style: none;
- padding: 0;
- align-content: center;
- border-right: 1px solid grey;
- flex-grow: 1;
-
- span {
- float: right;
- margin-left: 12px;
- }
- .active {
- background: #fff;
- }
-`;
-
-export const SuiteDiv = styled.div`
- display: flex;
- width: 100%;
- min-width: 140px;
-`;
-
-export const StyledLink = styled(NavLink)`
- width: 100%;
- padding: 10px;
- color: black !important;
- cursor: pointer;
- display: inline;
- text-decoration: none;
-
- :hover {
- background: #ddd;
- }
-`;
-
-export const FlexContainer = styled.div`
- display: flex;
-`;
-
export const StyledFont = styled(FA)`
margin-right: 8px;
`;
@@ -57,14 +17,6 @@ export const FlexGrowColumn = styled.div`
padding: 5px;
`;
-export const ListHeaderColumn = styled.ul`
- list-style: none;
- padding-left: 0px;
- display: flex;
- flex-direction: column;
- padding: 5px;
-`;
-
export const ListTitle = styled.div`
color: grey;
`;