Skip to content

Hardware connectivity test #13722

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import sinon from 'sinon';
import { shallow } from 'enzyme';
import TextField from '../../../components/ui/text-field';
import ToggleButton from '../../../components/ui/toggle-button';
import LedgerTransportDropdown from './ledger-transport-dropdown';
import AdvancedTab from './advanced-tab.component';

describe('AdvancedTab Component', () => {
Expand Down Expand Up @@ -35,7 +36,8 @@ describe('AdvancedTab Component', () => {
});

it('should render correctly when threeBoxFeatureFlag', () => {
expect(component.find('.settings-page__content-row')).toHaveLength(13);
expect(component.find('.settings-page__content-row')).toHaveLength(12);
expect(component.find(LedgerTransportDropdown)).toHaveLength(1);
});

it('should update autoLockTimeLimit', () => {
Expand Down