UNPKG

gatsby-plugin-material-ui

Version:

Gatsby plugin for Material-UI with built-in server-side rendering support

13 lines (11 loc) 315 B
const { onPreInit } = require(`../gatsby-node`); describe(`gatsby-node`, () => { describe(`onPreInit`, () => { it(`should throw an exception if the plugin is provided twice in the gatsby config`, () => { onPreInit(); expect(() => { onPreInit(); }).toThrowError(); }); }); });