Skip to content

Commit

Permalink
Progress
Browse files Browse the repository at this point in the history
TODO: figure out how to make Playwright ONLY test in `/tests/`.
  • Loading branch information
EthanThatOneKid committed Sep 15, 2022
1 parent 6d190c9 commit df8af18
Show file tree
Hide file tree
Showing 6 changed files with 774 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/lib/public/board/data.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import OFFICERS_JSON from './officers.json';
import TIERS_JSON from './tiers.json';
import type { Officer } from './types';
import { Term } from './types';

export const VISIBLE_TERMS = [Term.Fall22, Term.Spring22, Term.Fall21, Term.Spring21];

export const OFFICERS: Officer[] = [...OFFICERS_JSON];

export const TIERS: string[] = [...TIERS_JSON];
Loading

0 comments on commit df8af18

Please sign in to comment.