mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-10-03 20:43:56 -07:00
Adds post 1.0 updates (#2105)
- closes #2104 - updates statistical areas link - closes #2103 - CAPs on NO and PARTIALLY - closes #2099 - Update press release on Alert and FAQs - closes #2101 - global replace high school degree to high school diploma - add comparison chart to FAQ - update .env file with comp chart route to S3 - update snapshots
This commit is contained in:
parent
7846635a30
commit
db75b8ae76
23 changed files with 162 additions and 51 deletions
|
@ -12,12 +12,12 @@ describe('rendering of TractPrioritization Component', () => {
|
|||
{scoreNComm: true, tribalCountAK: 2, percentTribal: 0, isDAC: 'YES'},
|
||||
{scoreNComm: true, tribalCountAK: 3, percentTribal: .45, isDAC: 'YES'},
|
||||
|
||||
{scoreNComm: false, tribalCountAK: null, percentTribal: null, isDAC: 'No'},
|
||||
{scoreNComm: false, tribalCountAK: null, percentTribal: 0, isDAC: 'Partially'},
|
||||
{scoreNComm: false, tribalCountAK: null, percentTribal: .13, isDAC: 'Partially'},
|
||||
{scoreNComm: false, tribalCountAK: 1, percentTribal: null, isDAC: 'Partially'},
|
||||
{scoreNComm: false, tribalCountAK: 2, percentTribal: 0, isDAC: 'Partially'},
|
||||
{scoreNComm: false, tribalCountAK: 3, percentTribal: .13, isDAC: 'Partially'},
|
||||
{scoreNComm: false, tribalCountAK: null, percentTribal: null, isDAC: 'NO'},
|
||||
{scoreNComm: false, tribalCountAK: null, percentTribal: 0, isDAC: 'PARTIALLY'},
|
||||
{scoreNComm: false, tribalCountAK: null, percentTribal: .13, isDAC: 'PARTIALLY'},
|
||||
{scoreNComm: false, tribalCountAK: 1, percentTribal: null, isDAC: 'PARTIALLY'},
|
||||
{scoreNComm: false, tribalCountAK: 2, percentTribal: 0, isDAC: 'PARTIALLY'},
|
||||
{scoreNComm: false, tribalCountAK: 3, percentTribal: .13, isDAC: 'PARTIALLY'},
|
||||
|
||||
];
|
||||
|
||||
|
|
|
@ -1,49 +1,49 @@
|
|||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`rendering of TractPrioritization Component checks if component renders No when score N communities = false, tribal points in AK = null tribal % = null 1`] = `
|
||||
exports[`rendering of TractPrioritization Component checks if component renders NO when score N communities = false, tribal points in AK = null tribal % = null 1`] = `
|
||||
<DocumentFragment>
|
||||
<h3>
|
||||
No
|
||||
NO
|
||||
</h3>
|
||||
</DocumentFragment>
|
||||
`;
|
||||
|
||||
exports[`rendering of TractPrioritization Component checks if component renders Partially when score N communities = false, tribal points in AK = 1 tribal % = null 1`] = `
|
||||
exports[`rendering of TractPrioritization Component checks if component renders PARTIALLY when score N communities = false, tribal points in AK = 1 tribal % = null 1`] = `
|
||||
<DocumentFragment>
|
||||
<h3>
|
||||
Partially
|
||||
PARTIALLY
|
||||
</h3>
|
||||
</DocumentFragment>
|
||||
`;
|
||||
|
||||
exports[`rendering of TractPrioritization Component checks if component renders Partially when score N communities = false, tribal points in AK = 2 tribal % = 0 1`] = `
|
||||
exports[`rendering of TractPrioritization Component checks if component renders PARTIALLY when score N communities = false, tribal points in AK = 2 tribal % = 0 1`] = `
|
||||
<DocumentFragment>
|
||||
<h3>
|
||||
Partially
|
||||
PARTIALLY
|
||||
</h3>
|
||||
</DocumentFragment>
|
||||
`;
|
||||
|
||||
exports[`rendering of TractPrioritization Component checks if component renders Partially when score N communities = false, tribal points in AK = 3 tribal % = 0.13 1`] = `
|
||||
exports[`rendering of TractPrioritization Component checks if component renders PARTIALLY when score N communities = false, tribal points in AK = 3 tribal % = 0.13 1`] = `
|
||||
<DocumentFragment>
|
||||
<h3>
|
||||
Partially
|
||||
PARTIALLY
|
||||
</h3>
|
||||
</DocumentFragment>
|
||||
`;
|
||||
|
||||
exports[`rendering of TractPrioritization Component checks if component renders Partially when score N communities = false, tribal points in AK = null tribal % = 0 1`] = `
|
||||
exports[`rendering of TractPrioritization Component checks if component renders PARTIALLY when score N communities = false, tribal points in AK = null tribal % = 0 1`] = `
|
||||
<DocumentFragment>
|
||||
<h3>
|
||||
Partially
|
||||
PARTIALLY
|
||||
</h3>
|
||||
</DocumentFragment>
|
||||
`;
|
||||
|
||||
exports[`rendering of TractPrioritization Component checks if component renders Partially when score N communities = false, tribal points in AK = null tribal % = 0.13 1`] = `
|
||||
exports[`rendering of TractPrioritization Component checks if component renders PARTIALLY when score N communities = false, tribal points in AK = null tribal % = 0.13 1`] = `
|
||||
<DocumentFragment>
|
||||
<h3>
|
||||
Partially
|
||||
PARTIALLY
|
||||
</h3>
|
||||
</DocumentFragment>
|
||||
`;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue