UNPKG

react-workbox

Version:

Manage installation and activation of service worker

13 lines (12 loc) 585 B
import React from 'react'; import TestRenderer from 'react-test-renderer'; import WorkboxProvider from './WorkboxProvider'; test('Rendering WorkboxProvider successfully', () => { const testRenderer = TestRenderer.create(React.createElement(WorkboxProvider, null)); expect(() => testRenderer.toJSON()).not.toThrow(); }); test('Rendering WorkboxProvider render exact children', () => { const testContent = 'CHILD'; const testRenderer = TestRenderer.create(React.createElement(WorkboxProvider, null, testContent)); expect(testRenderer.toJSON()).toBe(testContent); });