UNPKG

@deg-skeletor/plugin-workbox

Version:

A Skeletor plugin to configure and generate service workers.

13 lines (11 loc) 263 B
const workboxBuild = { generateSW: jest.fn(() => mockWorkboxFn()), injectManifest: jest.fn(() => mockWorkboxFn()) }; function mockWorkboxFn(config) { return Promise.resolve({ count: 1, size: 1 }); } module.exports = workboxBuild;