diff --git a/lighthouse-core/index.js b/lighthouse-core/index.js index e96d9a7ea434..a1f90a66e586 100644 --- a/lighthouse-core/index.js +++ b/lighthouse-core/index.js @@ -28,10 +28,6 @@ const Config = require('./config/config'); module.exports = function(url, flags = {}, configJSON) { const startTime = Date.now(); return Promise.resolve().then(_ => { - if (!url) { - throw new Error('Lighthouse requires a URL'); - } - // set logging preferences, assume quiet flags.logLevel = flags.logLevel || 'error'; log.setLevel(flags.logLevel);