next.js/test/e2e/app-dir/webpack-loader-errors/loaders/timeout-error-loader.js
timeout-error-loader.js8 lines206 B
module.exports = function timeoutErrorLoader(source) {
  const callback = this.async()
  setTimeout(() => {
    throw new Error('An error thrown by timeout-error-loader')
  }, 0)
  callback(null, source)
}
Quest for Codev2.0.0
/
SIGN IN