diff --git a/frontend/src/component/feature/variant/__tests__/update-variant-component-test.jsx b/frontend/src/component/feature/variant/__tests__/update-variant-component-test.jsx index ef6582bfd6..f82f4d146e 100644 --- a/frontend/src/component/feature/variant/__tests__/update-variant-component-test.jsx +++ b/frontend/src/component/feature/variant/__tests__/update-variant-component-test.jsx @@ -19,6 +19,7 @@ test('renders correctly with without variants', () => { removeVariant={jest.fn()} updateVariant={jest.fn()} stickinessOptions={['default']} + updateStickiness={jest.fn()} hasPermission={permission => permission === UPDATE_FEATURE} /> @@ -37,6 +38,7 @@ test('renders correctly with without variants and no permissions', () => { removeVariant={jest.fn()} updateVariant={jest.fn()} stickinessOptions={['default']} + updateStickiness={jest.fn()} hasPermission={() => false} /> @@ -94,6 +96,7 @@ test('renders correctly with with variants', () => { removeVariant={jest.fn()} updateVariant={jest.fn()} stickinessOptions={['default']} + updateStickiness={jest.fn()} hasPermission={permission => permission === UPDATE_FEATURE} />