mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-09-30 14:33:17 -07:00
* Update version number on frontend - add verion to download packet - add verison to side panel - update snaphots - add version to constant file * Add minor UI changes from QA - adjust copy in download package - update tests * Refactor all intl code and will add page tests - remove all copy app wide and place into respective data/copy folder - adds tests for each page - allow product to make copy changes in one place - prepare for spanish language effort
15 lines
392 B
TypeScript
15 lines
392 B
TypeScript
import * as React from 'react';
|
|
import {render, screen} from '@testing-library/react';
|
|
import {LocalizedComponent} from '../../test/testHelpers';
|
|
import DownloadPacket from '.';
|
|
|
|
test('download packet component defined', () => {
|
|
render(
|
|
<LocalizedComponent>
|
|
<DownloadPacket />
|
|
</LocalizedComponent>,
|
|
);
|
|
|
|
screen.getByRole('button', {name: /download package/i});
|
|
});
|
|
|