Skip to content

Commit

Permalink
feat(vital-examples): Fix Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
VancheeZze committed May 19, 2023
1 parent 7c1aa40 commit 062b776
Showing 1 changed file with 15 additions and 0 deletions.
@@ -0,0 +1,15 @@
/* eslint-disable jest/valid-describe */
import React from 'react';
import { testTokens } from '@bodiless/vital-elements';
import { SectionClean } from '@bodiless/vital-section';
import { exampleSection } from '..';

jest.mock('slate', () => ({
Editor: () => (<div>Heal the world!</div>),
Raw: {
deserialize: jest.fn(),
serialize: jest.fn()
}
}));

describe('Dialog Tokens', testTokens(SectionClean, exampleSection));

0 comments on commit 062b776

Please sign in to comment.