Browse Source

fix: fixed tslint validation error

Torkel Ödegaard 8 years ago
parent
commit
34edea4ac7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/core/specs/ColorPalette.jest.tsx

+ 1 - 1
public/app/core/specs/ColorPalette.jest.tsx

@@ -4,7 +4,7 @@ import { ColorPalette } from '../components/colorpicker/ColorPalette';
 
 describe('CollorPalette', () => {
   it('renders correctly', () => {
-    const tree = renderer.create(<ColorPalette color="#EAB839" />).toJSON();
+    const tree = renderer.create(<ColorPalette color="#EAB839" onColorSelect={jest.fn()} />).toJSON();
     expect(tree).toMatchSnapshot();
   });
 });