Skip to content

Commit

Permalink
vary colors in cohort select test
Browse files Browse the repository at this point in the history
  • Loading branch information
macfarlandian committed Oct 28, 2020
1 parent dd73e81 commit 3bd8b3b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions public-dashboard-client/src/controls/CohortSelect.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ let testOptions;
beforeEach(() => {
testOptions = [
{ id: "2009", label: "2009", color: "#C0FFEE" },
{ id: "2010", label: "2010", color: "#C0FFEE" },
{ id: "2011", label: "2011", color: "#C0FFEE" },
{ id: "2012", label: "2012", color: "#C0FFEE" },
{ id: "2013", label: "2013", color: "#C0FFEE" },
{ id: "2014", label: "2014", color: "#C0FFEE" },
{ id: "2015", label: "2015", color: "#C0FFEE" },
{ id: "2016", label: "2016", color: "#C0FFEE" },
{ id: "2017", label: "2017", color: "#C0FFEE" },
{ id: "2018", label: "2018", color: "#C0FFEE" },
{ id: "2010", label: "2010", color: "#F4E192" },
{ id: "2011", label: "2011", color: "#AAF268" },
{ id: "2012", label: "2012", color: "#149E2B" },
{ id: "2013", label: "2013", color: "#7ACCD6" },
{ id: "2014", label: "2014", color: "#B54F01" },
{ id: "2015", label: "2015", color: "#8C0536" },
{ id: "2016", label: "2016", color: "#DDE03E" },
{ id: "2017", label: "2017", color: "#C5E276" },
{ id: "2018", label: "2018", color: "#8CFFED" },
];
// mock breakpoint hook to simulate screen size (not natively supported by JSDOM)
useBreakpoint.mockReturnValue(false);
Expand Down

0 comments on commit 3bd8b3b

Please sign in to comment.