chore(ci): fix ci conflict (#15016)

This commit is contained in:
Ville Brofeldt 2021-06-07 18:27:54 +03:00 committed by GitHub
parent d2a6e8cd20
commit de1b140617
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -200,6 +200,9 @@ describe('SelectFilterPlugin', () => {
userEvent.click(screen.getByRole('combobox'));
userEvent.click(screen.getByTitle('girl'));
expect(setDataMask).toHaveBeenCalledWith({
__cache: {
value: ['boy'],
},
extraFormData: {
filters: [
{

View File

@ -51,7 +51,7 @@ type DataMaskAction =
};
function reducer(
draft: Required<DataMask> & { __cache?: JsonObject },
draft: DataMask & { __cache?: JsonObject },
action: DataMaskAction,
) {
switch (action.type) {