Skip to content

Commit

Permalink
Merge branch 'main' into no-skipped-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Clue committed Nov 8, 2023
2 parents 24620e7 + 662303d commit 85ac89a
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 22 deletions.
4 changes: 2 additions & 2 deletions client/components/App/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ a.nav-link {
.nav-link[aria-current='true']:after {
background: #0b60ab;
}
@media all and (min-width: 992px) {
@media all and (min-width: 1200px) {
.navbar-expand-lg .navbar-collapse ul {
display: flex;
flex-basis: auto;
Expand All @@ -79,7 +79,7 @@ a.nav-link {
margin: auto;
}
}
@media all and (max-width: 991px) {
@media all and (max-width: 1199px) {
.nav-link[aria-current='true']:after,
.nav-link:hover:after {
position: absolute;
Expand Down
4 changes: 2 additions & 2 deletions client/components/App/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const App = () => {
<Container fluid>
<Navbar
bg="light"
expand="lg"
expand="xl"
aria-label="Menu"
expanded={isNavbarExpanded}
onToggle={() => setIsNavbarExpanded(previous => !previous)}
Expand Down Expand Up @@ -67,7 +67,7 @@ const App = () => {
'/report'
)}
>
Test Reports
AT Interoperability Reports
</Nav.Link>
</li>
<li>
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/Report.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const Report = () => {
if (error) {
return (
<PageStatus
title="Test Reports | ARIA-AT"
heading="Test Reports"
title="AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
message={error.message}
isError
/>
Expand All @@ -29,8 +29,8 @@ const Report = () => {
if (loading) {
return (
<PageStatus
title="Loading - Test Reports | ARIA-AT"
heading="Test Reports"
title="Loading - AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
/>
);
}
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/Reports.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ const Reports = () => {
if (error) {
return (
<PageStatus
title="Test Reports | ARIA-AT"
heading="Test Reports"
title="AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
message={error.message}
isError
/>
Expand All @@ -24,8 +24,8 @@ const Reports = () => {
if (loading) {
return (
<PageStatus
title="Loading - Test Reports | ARIA-AT"
heading="Test Reports"
title="Loading - AT Interop Reports | ARIA-AT"
heading="Assistive Technology Interoperability Reports"
/>
);
}
Expand Down
2 changes: 1 addition & 1 deletion client/components/Reports/SummarizeTestPlanReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const SummarizeTestPlanReport = ({ testPlanVersion, testPlanReports }) => {
<LinkContainer to="/reports">
<Breadcrumb.Item>
<FontAwesomeIcon icon={faHome} />
Test Reports
AT Interoperability Reports
</Breadcrumb.Item>
</LinkContainer>
<LinkContainer to={`/report/${testPlanVersion.id}`}>
Expand Down
8 changes: 4 additions & 4 deletions client/components/Reports/SummarizeTestPlanReports.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ const SummarizeTestPlanReports = ({ testPlanVersions }) => {
return (
<FullHeightContainer id="main" as="main" tabIndex="-1">
<Helmet>
<title>Test Reports | ARIA-AT</title>
<title>AT Interop Reports | ARIA-AT</title>
</Helmet>
<h1>Test Reports</h1>
<h1>Assistive Technology Interoperability Reports</h1>
<p>
There are no results to show just yet. Please check back
soon!
Expand All @@ -66,9 +66,9 @@ const SummarizeTestPlanReports = ({ testPlanVersions }) => {
return (
<FullHeightContainer id="main" as="main" tabIndex="-1">
<Helmet>
<title>Test Reports | ARIA-AT</title>
<title>AT Interop Reports | ARIA-AT</title>
</Helmet>
<h1>Test Reports</h1>
<h1>Assistive Technology Interoperability Reports</h1>
<h2>Introduction</h2>
<p>
This page offers a high-level view of all results which have
Expand Down
2 changes: 1 addition & 1 deletion client/components/Reports/SummarizeTestPlanVersion.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const SummarizeTestPlanVersion = ({ testPlanVersion, testPlanReports }) => {
<LinkContainer to="/reports">
<Breadcrumb.Item>
<FontAwesomeIcon icon={faHome} />
Test Reports
AT Interoperability Reports
</Breadcrumb.Item>
</LinkContainer>
<Breadcrumb.Item active>
Expand Down
6 changes: 2 additions & 4 deletions server/tests/integration/dataManagement.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ const dbCleaner = require('../util/db-cleaner');
const { query, mutate } = require('../util/graphql-test-utilities');
const db = require('../../models');

beforeAll(() => {
jest.setTimeout(20000);
});
jest.setTimeout(20000);

afterAll(async () => {
// Closing the DB connection allows Jest to exit successfully.
await db.sequelize.close();
});
}, 20000);

describe('data management', () => {
const testPlanVersionsQuery = () => {
Expand Down

0 comments on commit 85ac89a

Please sign in to comment.