apjames93/mui-storyblok

View on GitHub
src/lib/utils/customLoader.test.js

Summary

Maintainability
A
0 mins
Test Coverage
import loader, { setCustomLoader } from './customLoader';

describe('Custom Loader Utils', () => {
  it('should push an object to the loader array', () => {
    setCustomLoader({});
    expect(loader.length).toEqual(1);
  });
});