import React from 'react'; import { create } from 'react-test-renderer'; import { DesignTokens } from '..'; test('Default use', () => { const tree = create(
My APP
); expect(tree.toJSON()).toMatchSnapshot(); }); test('Custom tag', () => { const tree = create(
My APP
); expect(tree.toJSON()).toMatchSnapshot(); });