chore: update prettier tab width for consistency (#175)

This commit is contained in:
41666 2021-03-13 22:54:34 -05:00 committed by GitHub
parent a931f8c69c
commit f24d2fcc99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
247 changed files with 7224 additions and 7375 deletions

View file

@ -1,7 +1,8 @@
jest.unmock('@roleypoly/design-system/atoms/role')
.unmock('@roleypoly/design-system/atoms/button')
.unmock('@roleypoly/design-system/molecules/picker-category')
.unmock('@roleypoly/design-system/organisms/role-picker');
jest
.unmock('@roleypoly/design-system/atoms/role')
.unmock('@roleypoly/design-system/atoms/button')
.unmock('@roleypoly/design-system/molecules/picker-category')
.unmock('@roleypoly/design-system/organisms/role-picker');
import { Role } from '@roleypoly/design-system/atoms/role';
import { PickerCategory } from '@roleypoly/design-system/molecules/picker-category';
@ -9,36 +10,36 @@ import { ResetSubmit } from '@roleypoly/design-system/molecules/reset-submit';
import { shallow } from 'enzyme';
import * as React from 'react';
import {
guildData,
mastheadSlugs,
member,
mockCategorySingle,
roleCategory,
roleCategory2,
guildData,
mastheadSlugs,
member,
mockCategorySingle,
roleCategory,
roleCategory2,
} from '../../fixtures/storyData';
import { RolePicker, RolePickerProps } from './RolePicker';
it('unselects the rest of a category in single mode', () => {
const props: RolePickerProps = {
guildData: { ...guildData, categories: [mockCategorySingle] },
member: { ...member, roles: [] },
roles: [...roleCategory, ...roleCategory2],
guild: mastheadSlugs[0],
onSubmit: jest.fn(),
editable: false,
};
const props: RolePickerProps = {
guildData: { ...guildData, categories: [mockCategorySingle] },
member: { ...member, roles: [] },
roles: [...roleCategory, ...roleCategory2],
guild: mastheadSlugs[0],
onSubmit: jest.fn(),
editable: false,
};
const view = shallow(<RolePicker {...props} />);
const view = shallow(<RolePicker {...props} />);
const roles = view.find(PickerCategory).dive().find(Role);
const roles = view.find(PickerCategory).dive().find(Role);
roles.first().props().onClick?.(true);
roles.first().props().onClick?.(true);
view.find(ResetSubmit).props().onSubmit();
expect(props.onSubmit).toBeCalledWith([mockCategorySingle.roles[0]]);
view.find(ResetSubmit).props().onSubmit();
expect(props.onSubmit).toBeCalledWith([mockCategorySingle.roles[0]]);
roles.at(1).props().onClick?.(true);
roles.at(1).props().onClick?.(true);
view.find(ResetSubmit).props().onSubmit();
expect(props.onSubmit).toBeCalledWith([mockCategorySingle.roles[1]]);
view.find(ResetSubmit).props().onSubmit();
expect(props.onSubmit).toBeCalledWith([mockCategorySingle.roles[1]]);
});